Operating System - HP-UX
1836690 Members
2602 Online
110108 Solutions
New Discussion

Apache , ssl and ProxyPass

 
oiram
Regular Advisor

Apache , ssl and ProxyPass

Hello:

I am trying to pass a request received in a no-secure webserver to a secure one. My httpd.conf file is the following:


ProxyRequests On


#

Order deny,allow
# Deny from all
Allow from all




ProxyPass /test https://www.servidor_seguro.com:443/test.html

This is failing, if you make the same using Redirect instead ProxyPass it works.

Regards.
2 REPLIES 2
U.SivaKumar_2
Honored Contributor

Re: Apache , ssl and ProxyPass

HI,

Put this lines in httpd.conf
Listen 80
Listen 443


ProxyRequests On


#

Order deny,allow
# Deny from all
Allow from all





ProxyRemote /test http://www.servidor_seguro.com:443/test.html

restart httpd and it should work
regards,
U.SivaKumar


Innovations are made when conventions are broken
Joachim Ring
New Member

Re: Apache , ssl and ProxyPass

you want to make shure that mod_ssl is loaded and added when using proxy backend ssl.

joachim