Guest User

Untitled

a guest
May 28th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1.  
  2. Options ExecCGI -MultiViews +SymLinksIfOwnerMatch
  3. Order allow,deny
  4. Allow from all
  5. </Directory>
  6.  
  7. ErrorLog /var/log/apache2/error.log
  8.  
  9. # Possible values include: debug, info, notice, warn, error, crit,
  10. # alert, emerg.
  11. LogLevel warn
  12.  
  13. CustomLog /var/log/apache2/access.log combined
  14. ServerSignature Off
  15.  
  16. Alias /doc/ "/usr/share/doc/"
  17. <Directory "/usr/share/doc/">
  18. Options Indexes MultiViews FollowSymLinks
  19. AllowOverride None
  20. Order deny,allow
  21. Deny from all
  22. Allow from 127.0.0.0/255.0.0.0 ::1/128
  23. </Directory>
  24.  
  25. SSLEngine Off
  26. SSLCertificateFile /etc/apache2/ssl/apache.pem
  27.  
  28. </VirtualHost>
Add Comment
Please, Sign In to add comment