RE: [EMAIL PROTECTED] Configuring a reverse proxy for SSL

2005-10-19 Thread Joost de Heer
I am having trouble getting my reverse proxy to work with SSL. Do you want the reverse proxy to be https-enabled, or do you want to reverse-proxy to a https-host? To RP to a https-backend system you need 'SSLProxyEngine on'. [warn] proxy: No protocol handler was valid for the URL /path/blah.

RE: [EMAIL PROTECTED] Configuring a reverse proxy for SSL

2005-10-19 Thread David Leangen
I am having trouble getting my reverse proxy to work with SSL. Do you want the reverse proxy to be https-enabled, or do you want to reverse-proxy to a https-host? To RP to a https-backend system you need 'SSLProxyEngine on'. Ah! That's the little detail I was missing. :-) Thanks for

RE: [EMAIL PROTECTED] Configuring a reverse proxy for SSL

2005-10-19 Thread Manuel Martin
Hello David, What seems strange to me is that the proxy host requires a certificate just to tunnel a session to an https backend system... This seems like quite a lot of overhead for nothing... well, that is is because it is not just a tunnel. :-) If you want just that, then you could

RE: [EMAIL PROTECTED] Configuring a reverse proxy for SSL

2005-10-19 Thread Boyle Owen
-Original Message- From: David Leangen [mailto:[EMAIL PROTECTED] What seems strange to me is that the proxy host requires a certificate just to tunnel a session to an https backend system... This seems like quite a lot of overhead for nothing... What you're doing is receiving

RE: [EMAIL PROTECTED] Configuring a reverse proxy for SSL

2005-10-19 Thread David Leangen
What seems strange to me is that the proxy host requires a certificate just to tunnel a session to an https backend system... This seems like quite a lot of overhead for nothing... well, that is is because it is not just a tunnel. :-) If you want just that, then you could use some kind

RE: [EMAIL PROTECTED] Configuring a reverse proxy for SSL

2005-10-18 Thread David Leangen
Isha, thank you! Comments inline. I am having trouble getting my reverse proxy to work with SSL. RequestHeader set Front-End-Https On That did something... But now I get a 403 error and a message in my logs (on the proxy server) saying: [warn] proxy: No protocol handler was valid for the

Re: [EMAIL PROTECTED] Configuring a reverse proxy for SSL

2005-10-17 Thread isha b
hello David , Add the following module under mod_proxy.c and try . It works fine for me RequestHeader set Front-End-Https On Regards, Isha On 10/17/05, David Leangen [EMAIL PROTECTED] wrote: Hello!I am having trouble getting my reverse proxy to work with SSL. Perhaps Ihave misunderstood