RE: [users@httpd] Apache Proxy configuration question

2012-09-21 Thread Jeremy T
: Re: [users@httpd] Apache Proxy configuration question Did you try using SSLProxyEngine On ? Normally, you do not need to use SSL when proxying, as SSL is used to secure contents, and if you install SSL certificate on Apache which is proxing you do not need to have SSL on backend servers On

RE: [users@httpd] Apache Proxy configuration question

2012-09-20 Thread Jeremy T
/demo / https://internal2:82 ProxyPassReverse /demo / https://internal2:82 ProxyPass / https://internal1:81 ProxyPassReverse / https://internal1:81 ThanksJeremy Date: Wed, 19 Sep 2012 17:40:55 +0530 From: vivek1namb...@gmail.com To: users@httpd.apache.org Subject: Re: [users@httpd] Apache Proxy

Re: [users@httpd] Apache Proxy configuration question

2012-09-19 Thread linuxsupport
Did you try using SSLProxyEngine On ? Normally, you do not need to use SSL when proxying, as SSL is used to secure contents, and if you install SSL certificate on Apache which is proxing you do not need to have SSL on backend servers On Wed, Sep 19, 2012 at 5:40 PM, Vivek Nambiar wrote: > Hi Jer

Re: [users@httpd] Apache Proxy configuration question

2012-09-19 Thread Vivek Nambiar
Hi Jeremy, If you add a / infront of the SSL URL,then does it work? Thanks On Wed, Sep 19, 2012 at 11:43 AM, Jeremy T wrote: > Hi All, > > I had a question about Apache with SSL. > Basically came across this issue when configuring a reverse proxy with > Apache. > > Do you know if there is som