apache vhosts conf file

  1. <VirtualHost 7head.local>
  2.   DocumentRoot "D:\webserver\webapps\7head"
  3.   ServerName 7head.local
  4.  
  5.   CustomLog "D:\webserver\logs\7head\access.log" combined
  6.   ErrorLog "D:\webserver\logs\7head\error.log"
  7.  
  8.   <Directory "D:\webserver\webapps\7head">
  9.     Options Indexes FollowSymLinks
  10.     AllowOverride All
  11.     Order allow,deny
  12.     Allow from all
  13.   </Directory>
  14. </VirtualHost>