Depends what you mean....I finally got Letsencrypt working with DCM and
now you can hit the www.petesworkshop.com url with either http or
https. This is what I have in the reverse proxy:
Listen 10.0.10.210:80
Listen 10.0.10.210:443 https
And in the petesworkshop virtualhosts:
<VirtualHost *:80>
ServerName www.petesworkshop.com
ServerAlias petesworkshop.com
ProxyTimeout 300
ProxyPreserveHost on
ProxyPass /
http://10.0.10.206:5080/
ProxyPassReverse /
http://10.0.10.206:5080/
</VirtualHost>
<VirtualHost *:443>
ServerName www.petesworkshop.com
ServerAlias petesworkshop.com
SSLEngine On
SSLAppName QIBM_HTTP_SERVER_VASDFT
SSLCacheEnable
ProxyTimeout 300
ProxyPreserveHost on
ProxyPass /
http://10.0.10.206:5080/
ProxyPassReverse /
http://10.0.10.206:5080/
</VirtualHost>
Those virtual hosts point to another instance of Apache:
Listen 10.0.10.206:5080
Then all the usual directives apply. I do have an issue with the
Wordpress instance under SSL but I am guessing that has something to do
with a setting I need to change in WP..I was just so happy with getting
Letsencrypt working with DCM that I stopped there.
Pete Helgren
www.petesworkshop.com
GIAC Secure Software Programmer-Java
LinkedIn - www.linkedin.com/in/petehelgren
Twitter - Sys_i_Geek IBM_i_Geek
On 11/2/2016 1:35 PM, Bradley Stone wrote:
Pete,
Have you had any luck with reverse proxy and a mix of HTTP and HTTPS? I
tried setting things up for HTTPS in my reverse proxy but it didn't seem to
take.
Brad
www.bvstools.com
As an Amazon Associate we earn from qualifying purchases.