WP behind reverse proxy all content insecure
-
Been attempting to get SSL working with SSL with no joy. I spent quite a bit of time researching code-related solutions and made multiple change to the Apache settings. I finally gave up. Then I came across your plugin and decided to give it a try. The test recommended that I use “unable to detect HTTPS” setting and I tried every content setting but still, no joy.
WP is behind a reverse proxy which uses the ProxyPass directive to pass traffic for the website back to an Apache instance running at port 5080 like so:
<VirtualHost *:443> ServerName www.ossgarden.org ServerAlias ossgarden.org *.ossgarden.org SSLEngine On -- some additional directives here -- ProxyTimeout 300 ProxyPreserveHost On ProxyPass / http://10.0.10.207:5580/ ProxyPassReverse / http://10.0.10.207:5580/ </VirtualHost>
Accessing the site with http works fine. But if you try https, then most of the http delivered content is flagged as insecure. There are multiple websites running on this apache server. They all work fine with https except when WP is in use, then the mixed content issues arise. Not sure what is unique about WP that makes it so difficult to work with SSL but it is the only application I have an issue with.
Any ideas on how to go about making it work?
The page I need help with: [log in to see the link]
- The topic ‘WP behind reverse proxy all content insecure’ is closed to new replies.