LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Virtualization and Cloud (https://www.linuxquestions.org/questions/linux-virtualization-and-cloud-90/)
-   -   Fail Apache Reverse Proxy with existing SSL wordpress (https://www.linuxquestions.org/questions/linux-virtualization-and-cloud-90/fail-apache-reverse-proxy-with-existing-ssl-wordpress-4175625279/)

jameslio 03-09-2018 02:10 PM

Fail Apache Reverse Proxy with existing SSL wordpress
 
I do hope you can help me
I am trying to reverse proxy to an existing SSL wordpress
<VirtualHost *:443>
ServerName test.com
<Location />
ProxyPass http://192.168.1.6/
ProxyPassReverse http://192.168.1.6/
</Location>
</VirtualHost>

But the website failed to load or if I forced it to run on port 80

<VirtualHost *:80>
ServerName test.com
<Location />
ProxyPass http://192.168.1.6/
ProxyPassReverse http://192.168.1.6/
</Location>
</VirtualHost>

The website will load incompletely

How do I get this to work?

Thanks

TenTenths 03-12-2018 08:46 AM

When you say "existing SSL wordpress" do you mean you already have SSL working on it? If that's the case then you'll need to send the requests to the backend over https.

jameslio 03-20-2018 04:55 AM

Okay how do you do that? Thanks


All times are GMT -5. The time now is 07:22 PM.