Guest User

Untitled

a guest
Jun 22nd, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. <VirtualHost mymccann.net:443>
  2. # General setup for the virtual host
  3. DocumentRoot "C:/xampp/htdocs/mymccann.net"
  4.  
  5. ServerName mymccann.net:443
  6. ServerAdmin admin@localhost
  7.  
  8. ErrorLog logs/mymccann_error.log
  9. <IfModule log_config_module>
  10. CustomLog logs/mymccann_access.log combined
  11. </IfModule>
  12.  
  13. SSLEngine on
  14.  
  15. SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
  16.  
  17. SSLCertificateFile conf/ssl.crt/server.crt
  18. SSLCertificateKeyFile conf/ssl.key/server.key
  19.  
  20. <Location />
  21. </Location>
  22.  
  23. <FilesMatch "\.(cgi|shtml|phtml|php|php5|php4|php3)$">
  24. SSLOptions +StdEnvVars
  25. </FilesMatch>
  26. <Directory "C:/xampp/apache/cgi-bin">
  27. SSLOptions +StdEnvVars
  28. </Directory>
  29.  
  30. <IfModule setenvif_module>
  31. BrowserMatch ".*MSIE.*" \
  32. nokeepalive ssl-unclean-shutdown \
  33. downgrade-1.0 force-response-1.0
  34. </IfModule>
  35.  
  36. <IfModule log_config_module>
  37. CustomLog logs/video_ssl_request.log \
  38. "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
  39. </IfModule>
  40. </VirtualHost>
Add Comment
Please, Sign In to add comment