Advertisement
Guest User

Apache2 - 000-default

a guest
Oct 26th, 2012
613
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. <VirtualHost *:80>
  2. ServerAdmin minecraftfreaksonline@gmail.com
  3.  
  4. DocumentRoot /var/www
  5.  
  6. <Directory />
  7. Options FollowSymLinks
  8. AllowOverride All
  9. </Directory>
  10.  
  11. <Directory /var/www/>
  12. Options Indexes FollowSymLinks MultiViews
  13. AllowOverride All
  14. Order allow,deny
  15. allow from all
  16. </Directory>
  17.  
  18. ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
  19.  
  20. <Directory "/usr/lib/cgi-bin">
  21. AllowOverride None
  22. Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
  23. Order allow,deny
  24. Allow from all
  25. </Directory>
  26.  
  27. ErrorLog ${APACHE_LOG_DIR}/error.log
  28.  
  29. # Possible values include: debug, info, notice, warn, error, crit,
  30. # alert, emerg.
  31. LogLevel warn
  32.  
  33. CustomLog ${APACHE_LOG_DIR}/access.log combined
  34. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement