Advertisement
TheStuntman

default.conf

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