logo
Apache Lounge
Webmasters

 

About Forum Index Downloads Search Register Log in RSS X


Keep Server Online

If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.

or

Bitcoin

A donation makes a contribution towards the costs, the time and effort that's going in this site and building.

Thank You! Steffen

Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
Post new topic   Forum Index -> Apache View previous topic :: View next topic
Reply to topic   Topic: Reverse Proxy with virtual hosts
Author
mmsarfraz



Joined: 01 Aug 2007
Posts: 1

PostPosted: Wed 01 Aug '07 6:11    Post subject: Reverse Proxy with virtual hosts Reply with quote

Hi All,

I want to reverse proxy my tow URLs those are https, and i want when i open https://172.16.69.22:8443 it should go to https://172.16.81.69:8443/groups/ and when i open https://172.16.69.22 it should go to https://172.16.81.76, my code is like this.

####Reverse Proxy Configuration #####
Listen 172.16.69.22:8443
<VirtualHost 172.16.69.22:8443>
SSLProxyEngine On
ProxyPass / https://172.16.81.69:8443/groups/
ProxyPassReverse / https://172.16.81.69:8443/groups/
</VirtualHost>

Listen 172.16.69.22:443
<VirtualHost 172.16.69.22:443>
SSLProxyEngine On
ProxyPass / https://172.16.81.76
ProxyPassReverse / https://172.16.81.76
</VirtualHost>

it work fine, but its makeing problem with SSL, means i have to open the page like this http://172.16.69.22, but i want to open it with https://.., Is it possible with out installing SSL certificates at my reverse proxy server. and it has problem it also not opening some images or pages.

Kindly suggest thanks.

--
Muhammad Mahmood Sarfraz
Back to top
flyingmonkey



Joined: 01 Aug 2007
Posts: 15

PostPosted: Wed 01 Aug '07 18:44    Post subject: Reply with quote

Hi Muhammad,

If you're trying to access your reverse proxy via https, you will need to setup an ssl certificate on your site.

-Calvin
Back to top


Reply to topic   Topic: Reverse Proxy with virtual hosts View previous topic :: View next topic
Post new topic   Forum Index -> Apache