Advertisement
_G4ry

Apache httpd-vhosts.conf configuration for a Symfony project

Mar 18th, 2013
637
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. <VirtualHost *:80>
  2. ServerName www.e-gifters.local
  3. ServerAlias e-gifters.local
  4. ServerAdmin webmaster@e-gifters.local
  5.  
  6. DocumentRoot "D:\Dev\GitHub\e-gifters\e-gifters\web"
  7. DirectoryIndex app.php
  8. <Directory "D:\Dev\GitHub\e-gifters\e-gifters\web">
  9. Options Indexes FollowSymLinks MultiViews
  10. AllowOverride All
  11. Allow from All
  12. </Directory>
  13.  
  14. Alias /sf "D:\Dev\GitHub\e-gifters\e-gifters\lib\vendor\symfony\data\web\sf"
  15. <Directory "D:\Dev\GitHub\e-gifters\e-gifters\lib\vendor\symfony\data\web\sf">
  16. AllowOverride All
  17. Allow from All
  18. </Directory>
  19. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement