Re: [us...@httpd] Configuring Reverse proxy with Apache Http Server2.2

2010-04-23 Thread GB GB
My apache server is dated, but this is what I did in order to make it work in ssl.conf client-->apache reverse proxy-->backend http application server ServerName mydomain.com ServerAlias mydomain ProxyBadHeader Ignore ProxyRequests Off #ProxyPreserveHost On RewriteEngine On SSLProxyEngine on

Re: [us...@httpd] Re: ProxyPreserveHost On

2010-04-23 Thread GB GB
I had the exact same problem Instead of putting those lines in httpd.conf, try putting them in ssl.conf I am running version 2.0.54, and ssl.conf directives worked for me. regards, On Fri, Apr 23, 2010 at 9:51 AM, Mauri wrote: > > Someone can help me? > > cheers, > Mauri > > > 2010/4/22 Maur

Re: [us...@httpd] Reverse Proxy https to http

2010-04-22 Thread GB GB
9P I copy pasted the info from my httpd.conf to my ssl.conf file and it SEEMS to work. But how do I preserve cookies if the Preserver host directive is disabled. Take note that when I enable that option, everything that is backend http stops working thx On Thu, Apr 22, 2010 at 10:03 AM,

Re: [us...@httpd] Reverse Proxy https to http

2010-04-22 Thread GB GB
u load this module? > > > 2010/4/22 GB GB >> >> The version I am using is >> Server version: Apache/2.0.54 >> Server built:   Sep 23 2005 15:28:48 >> >>  ProxyHTMLURLMap doesn't work with what I am using. >> >> >> On Thu,

Re: [us...@httpd] Reverse Proxy https to http

2010-04-22 Thread GB GB
vVars > > >     SSLOptions +StdEnvVars > > SetEnvIf User-Agent ".*MSIE.*" \ > nokeepalive ssl-unclean-shutdown \ > downgrade-1.0 force-response-1.0 > CustomLog logs/ssl_request_log \ >   "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x

Re: [us...@httpd] Reverse Proxy https to http

2010-04-22 Thread GB GB
ples that people use PreserveHost on, in my case, if activate PreserveHost on then I cant even get the first page to work: Thx in advance On Wed, Apr 21, 2010 at 4:56 AM, Krist van Besien wrote: > On Tue, Apr 20, 2010 at 6:41 PM, GB GB wrote: > > > >> #this for some reaso

[us...@httpd] Reverse Proxy https to http

2010-04-20 Thread GB GB
Hello, I am trying to configure my proxy to be able to accept HTTPS and forward requests to backend server which is in HTTP user-->(https://mydomain.com/abc)-ssl: [reverse proxy]:http--->http://backend.ca/8082/abc I want to preserve the URL as https//mydomain.com/abc. I look