Advertisement
Guest User

Untitled

a guest
Mar 31st, 2015
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. ServerAdmin webmaster@localhost
  2. ServerName www.vozuv.com
  3. DocumentRoot /var/www/voz
  4. <Directory />
  5. Options FollowSymLinks
  6. AllowOverride None
  7. </Directory>
  8. <Directory /var/www/voz/>
  9. Options Indexes FollowSymLinks MultiViews
  10. AllowOverride None
  11. Order allow,deny
  12. allow from all
  13. </Directory>
  14.  
  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}/ssl_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. # SSL Engine Switch:
  41.  
  42. SSLEngine On
  43. SSLOptions +FakeBasicAuth +ExportCertData +CompatEnvVars +StrictRequire
  44. SSLCertificateFile /etc/apache2/ssl/server.crt
  45. SSLCertificateKeyFile /etc/apache2/ssl/server.key
  46. <FilesMatch ".(cgi|shtml|phtml|php)$">
  47. SSLOptions +StdEnvVars
  48. </FilesMatch>
  49. <Directory /usr/lib/cgi-bin>
  50. SSLOptions +StdEnvVars
  51. </Directory>
  52.  
  53. BrowserMatch "MSIE [2-6]"
  54. nokeepalive ssl-unclean-shutdown
  55. downgrade-1.0 force-response-1.0
  56. # MSIE 7 and newer should be able to use keepalive
  57. BrowserMatch "MSIE [17-9]" ssl-unclean-shutdown
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement