Guest User

Untitled

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