Advertisement
Guest User

Untitled

a guest
Jul 8th, 2014
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. <VirtualHost *:80>
  2. ServerAdmin webmaster@localhost
  3.  
  4. DocumentRoot /home/luca/lsserver/
  5. <Directory />
  6. Options FollowSymLinks
  7. AllowOverride None
  8. </Directory>
  9. <Directory /home/luca/lsserver/>
  10. Options Indexes FollowSymLinks MultiViews
  11. AllowOverride None
  12. Order allow,deny
  13. allow from all
  14. </Directory>
  15. ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
  16. <Directory "/usr/lib/cgi-bin">
  17. AllowOverride None
  18. Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
  19. Order allow,deny
  20. Allow from all
  21. </Directory>
  22.  
  23. ErrorLog ${APACHE_LOG_DIR}/error.log
  24.  
  25. # Possible values include: debug, info, notice, warn, error, crit,
  26. # alert, emerg.
  27. LogLevel warn
  28.  
  29. CustomLog ${APACHE_LOG_DIR}/access.log combined
  30.  
  31. Alias /doc/ "/usr/share/doc/"
  32. <Directory "/usr/share/doc/">
  33. Options Indexes MultiViews FollowSymLinks
  34. AllowOverride None
  35. Order deny,allow
  36. Deny from all
  37. Allow from 127.0.0.0/255.0.0.0 ::1/128
  38. </Directory>
  39.  
  40. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement