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

2010-04-23 Thread Krist van Besien
On Thu, Apr 22, 2010 at 4:31 PM, GB GB gbcy...@gmail.com wrote: basically this is what the client gets after the POST http://mydomain.com/lsw/clientele/ses/pagePersonnelle.jsp?Mouftah=VXV744A9SVZMU9P rather then getting

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

2010-04-22 Thread GB GB
Basically what goes on when the user types in https://mydomain.com/lsw he gets an authentification page from the backend application. Once he enters his credentials, I notice a POST in the apache logs. This is what the user types in: https://mydomain.com/lsw/clientele/gen/authentification.jsp he

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

2010-04-22 Thread Mauri
Hi GB. I have a similar solution. Client -- https://mysite.com -- proxy -- http://backend. the url in the client broswer is https://mysite.com. this is my /etc/httpd/conf.d/ssl.conf: LoadModule ssl_module modules/mod_ssl.so LoadFile /usr/lib/libxml2.so LoadModule proxy_html_module

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

2010-04-22 Thread 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, Apr 22, 2010 at 8:32 AM, Mauri lai...@gmail.com wrote: Hi GB. I have a similar solution. Client -- https://mysite.com -- proxy --

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

2010-04-22 Thread Mauri
u can investigate on the version. I have this: httpd-2.2.3-31 Please see at ssl.conf top: LoadModule ssl_module modules/mod_ssl.so LoadFile /usr/lib/libxml2.so LoadModule proxy_html_module modules/mod_proxy_html.so LoadModule xml2enc_module

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

2010-04-22 Thread Krist van Besien
On Thu, Apr 22, 2010 at 2:21 PM, GB GB gbcy...@gmail.com wrote: and in the browser I get the following: The connection has timed out http://backend2.ca/lsw/clientele/ses/pagePersonnelle.jsp?Mouftah=VXV744A9SVZMU9P If the browser tries to access the backend directly this is because it was told

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

2010-04-22 Thread alin vasile
Shouldn't be ProxyPassReverse / https://10.173.90.167:8443/ ? From: GB GB gbcy...@gmail.com To: users@httpd.apache.org Sent: Thu, April 22, 2010 3:56:36 PM Subject: Re: [us...@httpd] Reverse Proxy https to http The version I am using is Server version

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

2010-04-22 Thread GB GB
I dont know why, but when I copy paste my virtualhost info from httpd.conf and put in ssl.conf like you it works??!! thx On Thu, Apr 22, 2010 at 9:01 AM, Mauri lai...@gmail.com wrote: u can investigate on the version. I have this: httpd-2.2.3-31 Please see at ssl.conf top:

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

2010-04-22 Thread GB GB
sorry i made a mistake when I wrote the URL's before basically this is what the client gets after the POST http://mydomain.com/lsw/clientele/ses/pagePersonnelle.jsp?Mouftah=VXV744A9SVZMU9P rather then getting https://mydomain.com/lsw/clientele/ses/pagePersonnelle.jsp?Mouftah=VXV744A9SVZMU9P I

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

2010-04-22 Thread Eric Covener
On Thu, Apr 22, 2010 at 9:59 AM, alin vasile alinachegal...@yahoo.com wrote: Location /     ProxyPassReverse https://10.173.90.167:8443/ /Location Shouldn't be ProxyPassReverse / https://10.173.90.167:8443/  ? The other arg is inferred from the context (location container), the two arg

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

2010-04-21 Thread Krist van Besien
On Tue, Apr 20, 2010 at 6:41 PM, GB GB gbcy...@gmail.com wrote: #this for some reason becomes http from client perspective #PreserveHost on does not work with lsw, so I disabled it RewriteRule       ^/lsw(.*)$    http://backend2.ca:8082/lsw$1     [NC,P,L] ProxyPassReverse  /lsw          

[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