Guest User

Untitled

a guest
Apr 23rd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. <VirtualHost *:443>
  2. ServerAdmin webmaster@localhost
  3. DocumentRoot /var/exports_web
  4. ServerName xxx.xxxxxx.net
  5. <Directory /var/exports_web/>
  6. Options Indexes FollowSymLinks MultiViews
  7. AllowOverride All
  8. Order allow,deny
  9. allow from all
  10. </Directory>
  11. ErrorLog ${APACHE_LOG_DIR}/error.log
  12. LogLevel info
  13. CustomLog ${APACHE_LOG_DIR}/ssl_access.log combined
  14. SSLEngine on
  15. SSLCertificateFile /etc/apache2/certs/tickets.christianbandslive.com.crt
  16. SSLCertificateKeyFile /etc/apache2/certs/tickets.christianbandslive.com.key
  17. <FilesMatch "\.(cgi|shtml|phtml|php)$">
  18. SSLOptions +StdEnvVars
  19. </FilesMatch>
  20. <Directory /usr/lib/cgi-bin>
  21. SSLOptions +StdEnvVars
  22. </Directory>
  23. BrowserMatch "MSIE [2-6]" \
  24. nokeepalive ssl-unclean-shutdown \
  25. downgrade-1.0 force-response-1.0
  26. # MSIE 7 and newer should be able to use keepalive
  27. BrowserMatch "MSIE [17-9]" ssl-unclean-shutdown
  28.  
  29. </VirtualHost>
Add Comment
Please, Sign In to add comment