vhost.sample 566 B

12345678910111213141516171819202122
  1. # Be sure to only have this line once in your configuration
  2. NameVirtualHost 127.0.0.1:80
  3. # This is the configuration for usic
  4. Listen 127.0.0.1:80
  5. <VirtualHost 127.0.0.1:80>
  6. ServerName usic.localhost
  7. DocumentRoot "/var/www/htdocs/site/web"
  8. DirectoryIndex index.php
  9. <Directory "/var/www/htdocs/site/web">
  10. AllowOverride All
  11. Allow from All
  12. </Directory>
  13. Alias /sf ""
  14. <Directory "">
  15. AllowOverride All
  16. Allow from All
  17. </Directory>
  18. </VirtualHost>