Advertisement
Guest User

Untitled

a guest
Sep 20th, 2017
471
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.85 KB | None | 0 0
  1. Listen 443
  2.  
  3. SSLCipherSuite HIGH:MEDIUM:!MD5:!RC4:!3DES
  4. SSLProxyCipherSuite HIGH:MEDIUM:!MD5:!RC4:!3DES
  5. SSLHonorCipherOrder on
  6. SSLProtocol all -SSLv3
  7. SSLProxyProtocol all -SSLv3
  8. SSLPassPhraseDialog builtin
  9. SSLSessionCache "shmcb:C:/xampp/apache/logs/ssl_scache(512000)"
  10. SSLSessionCacheTimeout 300
  11.  
  12. <VirtualHost *:443>
  13. DocumentRoot "C:/xampp/htdocs"
  14. ServerName localhost
  15. ServerAdmin webmaster@localhost
  16. ErrorLog "C:/xampp/apache/logs/localhost-error.log"
  17. TransferLog "C:/xampp/apache/logs/localhost-access.log"
  18.  
  19. SSLEngine on
  20. SSLCertificateFile "conf/ssl.pem/localhost.pem"
  21. SSLCertificateKeyFile "conf/ssl.key/localhost.key"
  22.  
  23. <FilesMatch "\.(cgi|shtml|phtml|php)$">
  24. SSLOptions +StdEnvVars
  25. </FilesMatch>
  26. <Directory "C:/xampp/apache/cgi-bin">
  27. SSLOptions +StdEnvVars
  28. </Directory>
  29.  
  30. BrowserMatch "MSIE [2-5]" \
  31. nokeepalive ssl-unclean-shutdown \
  32. downgrade-1.0 force-response-1.0
  33. CustomLog "C:/xampp/apache/logs/ssl_request_localhost.log" \
  34. "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
  35. </VirtualHost>
  36.  
  37. <VirtualHost 127.0.0.2:443>
  38. DocumentRoot "C:/xampp/htdocs/itshare-online.dev"
  39. ServerName itshare-online.dev
  40. ServerAlias www.itshare-online.dev
  41. ServerAdmin server@itshare-online.dev
  42. ErrorLog "C:/xampp/apache/logs/itshare-online.dev-error.log"
  43. TransferLog "C:/xampp/apache/logs/itshare-online.dev-access.log"
  44.  
  45. SSLEngine on
  46. SSLCertificateFile "conf/ssl.pem/itshare-online.dev.pem"
  47. SSLCertificateKeyFile "conf/ssl.key/itshare-online.dev.key"
  48.  
  49. <FilesMatch "\.(cgi|shtml|phtml|php)$">
  50. SSLOptions +StdEnvVars
  51. </FilesMatch>
  52. <Directory "C:/xampp/apache/cgi-bin">
  53. SSLOptions +StdEnvVars
  54. </Directory>
  55.  
  56. BrowserMatch "MSIE [2-5]" \
  57. nokeepalive ssl-unclean-shutdown \
  58. downgrade-1.0 force-response-1.0
  59. CustomLog "C:/xampp/apache/logs/ssl_request_itshare-online.dev.log" \
  60. "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
  61. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement