Advertisement
Guest User

Untitled

a guest
Sep 20th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. <VirtualHost 127.0.0.2:443>
  2. DocumentRoot "C:/xampp/htdocs/itshare-online.dev"
  3. ServerName itshare-online.dev
  4. ServerAlias www.itshare-online.dev
  5. ServerAdmin server@itshare-online.dev
  6. ErrorLog "C:/xampp/apache/logs/itshare-online.dev-error.log"
  7. TransferLog "C:/xampp/apache/logs/itshare-online.dev-access.log"
  8.  
  9. SSLEngine on
  10. SSLCertificateFile "conf/ssl.pem/itshare-online.dev.pem"
  11. SSLCertificateKeyFile "conf/ssl.key/itshare-online.dev.key"
  12.  
  13. <FilesMatch "\.(cgi|shtml|phtml|php)$">
  14. SSLOptions +StdEnvVars
  15. </FilesMatch>
  16. <Directory "C:/xampp/apache/cgi-bin">
  17. SSLOptions +StdEnvVars
  18. </Directory>
  19.  
  20. BrowserMatch "MSIE [2-5]" \
  21. nokeepalive ssl-unclean-shutdown \
  22. downgrade-1.0 force-response-1.0
  23. CustomLog "C:/xampp/apache/logs/ssl_request_itshare-online.dev.log" \
  24. "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
  25. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement