24 lines
788 B
Text
24 lines
788 B
Text
ServerName java-deptools.fedorainfracloud.org
|
|
|
|
<Proxy *>
|
|
AddDefaultCharset off
|
|
Order deny,allow
|
|
Allow from all
|
|
</Proxy>
|
|
|
|
<VirtualHost *:443>
|
|
SSLEngine on
|
|
SSLCertificateFile /etc/letsencrypt/live/java-deptools.fedorainfracloud.org/cert.pem
|
|
SSLCertificateKeyFile /etc/letsencrypt/live/java-deptools.fedorainfracloud.org/privkey.pem
|
|
SSLCertificateChainFile /etc/letsencrypt/live/java-deptools.fedorainfracloud.org/fullchain.pem
|
|
SSLHonorCipherOrder On
|
|
SSLCipherSuite RC4-SHA:AES128-SHA:ALL:!ADH:!EXP:!LOW:!MD5:!SSLV2:!NULL
|
|
SSLProtocol ALL -SSLv2
|
|
|
|
ProxyPass / http://localhost:9000/
|
|
ProxyPassReverse / http://localhost:9000/
|
|
</VirtualHost>
|
|
|
|
RewriteEngine On
|
|
RewriteCond %{HTTPS} off
|
|
RewriteRule (.*) https://%{SERVER_NAME}/$1 [R,L]
|