Advertisement
Guest User

Untitled

a guest
May 30th, 2018
359
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.23 KB | None | 0 0
  1.  
  2. #
  3. # When we also provide SSL we have to listen to the
  4. # standard HTTP port (see above) and to the HTTPS port
  5. #
  6.  
  7. Listen 443
  8.  
  9.  
  10.  
  11.  
  12.  
  13.  
  14. ##
  15. ## SSL Virtual Host Context
  16. ##
  17.  
  18. <VirtualHost *:443>
  19. ServerAdmin victor54@live.com
  20. DocumentRoot "O:/XAMPP/htdocs/"
  21. ServerName vicy.us
  22. ServerAlias www.vicy.us
  23.  
  24. SSLEngine on
  25. SSLProxyEngine on
  26. SSLProtocol TLSv1.2
  27. SSLCompression off
  28. # SSLUseStapling on
  29. # SSLStaplingResponderTimeout 5
  30. # SSLStaplingReturnResponderErrors off
  31. SSLHonorCipherOrder on
  32. SSLOpenSSLConfCmd ECDHParameters secp384r1
  33. SSLCipherSuite "HIGH:!aNULL:!MD5:!3DES:!CAMELLIA:!AES128"
  34. SSLCertificateFile "conf/w.vicy.us.crt"
  35. SSLCertificateKeyFile "conf/w.vicy.us-key.pem"
  36. SSLCertificateChainFile "conf/Let'sEncryptAuthorityX3.crt"
  37. SSLCACertificateFile "conf/vicy.us.chain+root.pem"
  38. </VirtualHost>
  39.  
  40. <VirtualHost *:443>
  41. ServerAdmin victor54@live.com
  42. ServerName amp.vicy.us
  43.  
  44. LimitRequestLine 150000
  45. LimitRequestFieldSize 150000
  46. <Proxy *>
  47. Order deny,allow
  48. Allow from all
  49. </Proxy>
  50.  
  51. <Location />
  52. ProxyPass https://vicy.us:8081/
  53. ProxyPassReverse https://vicy.us:8081/
  54. </Location>
  55.  
  56. SSLEngine on
  57. SSLProxyEngine on
  58. SSLProtocol TLSv1.2
  59. SSLHonorCipherOrder on
  60. SSLCompression off
  61. SSLCipherSuite "HIGH:!aNULL:!MD5:!3DES:!CAMELLIA:!AES128"
  62. SSLCertificateFile "conf/w.vicy.us.crt"
  63. SSLCertificateKeyFile "conf/w.vicy.us-key.pem"
  64. SSLCertificateChainFile "conf/Let'sEncryptAuthorityX3.crt"
  65. </VirtualHost>
  66.  
  67. <VirtualHost *:443>
  68. ServerAdmin victor54@live.com
  69. ServerName plex.vicy.us
  70.  
  71. LimitRequestLine 150000
  72. LimitRequestFieldSize 150000
  73. <Proxy *>
  74. Order deny,allow
  75. Allow from all
  76. </Proxy>
  77. ProxyPreserveHost On
  78. <Location />
  79. ProxyPass https://plex.vicy.us:32400/
  80. ProxyPassReverse https://plex.vicy.us:32400/
  81. </Location>
  82.  
  83. RewriteEngine on
  84. RewriteCond %{REQUEST_URI} !^/web
  85. RewriteCond %{HTTPS:X-Plex-Device} ^$
  86. RewriteRule ^/$ /web/$1 [R,L]
  87.  
  88. SSLEngine on
  89. SSLProxyEngine on
  90. SSLProtocol TLSv1.2
  91. SSLHonorCipherOrder on
  92. SSLCompression off
  93. SSLCipherSuite "HIGH:!aNULL:!MD5:!3DES:!CAMELLIA:!AES128"
  94. SSLCertificateFile "conf/w.vicy.us.crt"
  95. SSLCertificateKeyFile "conf/w.vicy.us-key.pem"
  96. SSLCertificateChainFile "conf/Let'sEncryptAuthorityX3.crt"
  97. </VirtualHost>
  98.  
  99. <VirtualHost *:443>
  100. ServerAdmin victor54@live.com
  101. DocumentRoot "O:/XAMPP/htdocs/site/"
  102. ServerName animu.vicy.us
  103.  
  104.  
  105. SSLEngine on
  106. SSLProxyEngine on
  107. SSLProtocol TLSv1.2
  108. SSLHonorCipherOrder on
  109. SSLCompression off
  110. SSLCipherSuite "HIGH:!aNULL:!MD5:!3DES:!CAMELLIA:!AES128"
  111. SSLCertificateFile "conf/w.vicy.us.crt"
  112. SSLCertificateKeyFile "conf/w.vicy.us-key.pem"
  113. SSLCertificateChainFile "conf/Let'sEncryptAuthorityX3.crt"
  114. </VirtualHost>
  115.  
  116. <FilesMatch "\.(cgi|shtml|phtml|php)$">
  117. SSLOptions +StdEnvVars
  118. </FilesMatch>
  119.  
  120. <Directory "O:/XAMPP/apache/cgi-bin">
  121. SSLOptions +StdEnvVars
  122. </Directory>
  123.  
  124. BrowserMatch "MSIE [2-5]" \
  125. nokeepalive ssl-unclean-shutdown \
  126. downgrade-1.0 force-response-1.0
  127. CustomLog "O:/XAMPP/apache/logs/ssl_request.log" \
  128. "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement