× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



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.

This thread ...

Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.