Guest User

Untitled

a guest
Jun 18th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. <VirtualHost *:80>
  2. ServerName framework.localhost.com
  3.  
  4. DocumentRoot /home/abolocco/projects/framework/app/webroot
  5. <Directory />
  6. Options FollowSymLinks
  7. AllowOverride None
  8. </Directory>
  9. <Directory /home/abolocco/projects/framework/app/webroot/>
  10. Options Indexes FollowSymLinks MultiViews
  11. AllowOverride All
  12. Order allow,deny
  13. allow from all
  14. </Directory>
  15.  
  16. ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
  17. <Directory "/usr/lib/cgi-bin">
  18. AllowOverride None
  19. Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
  20. Order allow,deny
  21. Allow from all
  22. </Directory>
  23.  
  24. # Possible values include: debug, info, notice, warn, error, crit,
  25. # alert, emerg.
  26. LogLevel warn
  27.  
  28. Alias /doc/ "/usr/share/doc/"
  29. <Directory "/usr/share/doc/">
  30. Options Indexes MultiViews FollowSymLinks
  31. AllowOverride None
  32. Order deny,allow
  33. Deny from all
  34. Allow from 127.0.0.0/255.0.0.0 ::1/128
  35. </Directory>
  36.  
  37. </VirtualHost>
Add Comment
Please, Sign In to add comment