...
Code Block | ||||
---|---|---|---|---|
| ||||
<VirtualHost *:24445> ProxyPass / http://localhost:4445/ ProxyPassReverse / http://localhost:4445/ # Enable/Disable SSL for this virtual host. SSLEngine on SSLProtocol all -SSLv2 -SSLv3 SSLCipherSuite ALL:!ADH:!EXPORT:!SSLv2:RC4+RSA:+HIGH:+MEDIUM:+LOW SSLCertificateFile /etc/pki/tls/certs/agent_host.crt SSLCertificateKeyFile /etc/pki/tls/private/agent_host.key </VirtualHost> |
Code Block | ||
---|---|---|
| ||
server {
listen 34445;
ssl on;
ssl_certificate /etc/pki/tls/certs/agent_host.crt;
ssl_certificate_key /etc/pki/tls/private/agent_host.key;
ssl_protocols TLSv1;
ssl_ciphers ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP;
ssl_prefer_server_ciphers on;
location / {
proxy_pass http://localhost:4445/;
}
} |
Import the self-signed certificate into the Java Truststore
...