Advertisement
Guest User

Untitled

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