Re: [EMAIL PROTECTED] url proxying (ssl->ssl)

2008-04-22 Thread Melanie Pfefer
it is ok now... I missed RewriteEngine On :) thanks. --- On Tue, 22/4/08, Melanie Pfefer <[EMAIL PROTECTED]> wrote: > From: Melanie Pfefer <[EMAIL PROTECTED]> > Subject: [EMAIL PROTECTED] url proxying (ssl->ssl) > To: users@httpd.apache.org > Date: Tuesday, 22 April

[EMAIL PROTECTED] url proxying (ssl->ssl)

2008-04-22 Thread Melanie Pfefer
hi again, I configured ssl on apache (front-end) to access my backend server (tomcat) using https (https://proxy-->https://backend) The following rewrite rule was working when I used url proxying on non-ssl apache (http://proxy -> https://backend) SSLProxyEngine On SSLProxyCACertificatePath /u

Re: [EMAIL PROTECTED] url proxying

2008-04-17 Thread Krist van Besien
On Wed, Apr 16, 2008 at 10:23 AM, Melanie Pfefer <[EMAIL PROTECTED]> wrote: > Hi Krist,all > indeed the cause was related to redirects on the backend application. The > developers fixed this issue and the url proxying is working now. > > > I appreciate your help and support. thank you. You're w

Re: [EMAIL PROTECTED] url proxying

2008-04-16 Thread Melanie Pfefer
an Besien <[EMAIL PROTECTED]> > Subject: Re: [EMAIL PROTECTED] url proxying > To: users@httpd.apache.org, [EMAIL PROTECTED] > Date: Tuesday, 15 April, 2008, 10:48 PM > On Tue, Apr 15, 2008 at 9:03 PM, Melanie Pfefer > <[EMAIL PROTECTED]> wrote: > > > > SSLProxy

Re: [EMAIL PROTECTED] url proxying

2008-04-15 Thread Melanie Pfefer
application. Could it be the cause why apache can't do this proxying? thx and appreciate your support. --- On Tue, 15/4/08, Krist van Besien <[EMAIL PROTECTED]> wrote: > From: Krist van Besien <[EMAIL PROTECTED]> > Subject: Re: [EMAIL PROTECTED] url proxying > To: user

Re: [EMAIL PROTECTED] url proxying

2008-04-15 Thread Krist van Besien
On Tue, Apr 15, 2008 at 9:03 PM, Melanie Pfefer <[EMAIL PROTECTED]> wrote: > > SSLProxyEngine On > > SSLProxyCACertificatePath /usr/local/apache2/conf/ssl > ProxyPass /abc/ https://backend:8443/abc/ > #ProxyPassReverse /abc/ https://abc:8443/abc/ > > The redirects works. But proxying not. Prox

Re: [EMAIL PROTECTED] url proxying

2008-04-15 Thread Melanie Pfefer
gt; From: Krist van Besien <[EMAIL PROTECTED]> > Subject: Re: [EMAIL PROTECTED] url proxying > To: users@httpd.apache.org, [EMAIL PROTECTED] > Date: Tuesday, 15 April, 2008, 11:19 AM > On Mon, Apr 14, 2008 at 10:48 PM, Melanie Pfefer > <[EMAIL PROTECTED]> wrote: > > h

Re: [EMAIL PROTECTED] url proxying

2008-04-15 Thread Krist van Besien
On Mon, Apr 14, 2008 at 10:48 PM, Melanie Pfefer <[EMAIL PROTECTED]> wrote: > hi > > Whenever I use ProxyPassReverse, the page could not be displayed. > ProxyPassReverse /psc-web/ https://remoteserver:8443/abc/ You need both. ProxyPass and ProxyPassReverse. What might be happening in your case (

Re: [EMAIL PROTECTED] url proxying

2008-04-14 Thread Melanie Pfefer
ubject: Re: [EMAIL PROTECTED] url proxying > To: users@httpd.apache.org, [EMAIL PROTECTED] > Date: Monday, 14 April, 2008, 11:28 PM > On Mon, Apr 14, 2008 at 3:44 PM, Melanie Pfefer > <[EMAIL PROTECTED]> wrote: > > Hi Krist, all, > > > > The url proxying is still

Re: [EMAIL PROTECTED] url proxying

2008-04-14 Thread Eric Covener
On Mon, Apr 14, 2008 at 3:44 PM, Melanie Pfefer <[EMAIL PROTECTED]> wrote: > Hi Krist, all, > > The url proxying is still not working: The url changes to point to the > backend server. > > ProxyRequests off > RewriteEngine On > SSLProxyEngine On > ProxyPass /psc-web/ https://remoteserver:8443

Re: [EMAIL PROTECTED] url proxying

2008-04-14 Thread Melanie Pfefer
ubject: Re: [EMAIL PROTECTED] url proxying > To: users@httpd.apache.org, [EMAIL PROTECTED] > Date: Monday, 14 April, 2008, 4:50 PM > On Mon, Apr 14, 2008 at 3:43 PM, Melanie Pfefer > <[EMAIL PROTECTED]> wrote: > > > But When I GET the page, nothing is returned

Re: [EMAIL PROTECTED] url proxying

2008-04-14 Thread Krist van Besien
On Mon, Apr 14, 2008 at 3:43 PM, Melanie Pfefer <[EMAIL PROTECTED]> wrote: > But When I GET the page, nothing is returned. That "GET" isn't really that important. Probably your tomcat server that refuses to answer when no "host" header is present. The important thing you test here is that an ssl

Re: [EMAIL PROTECTED] url proxying

2008-04-14 Thread Melanie Pfefer
On Mon, 14/4/08, Krist van Besien <[EMAIL PROTECTED]> wrote: > From: Krist van Besien <[EMAIL PROTECTED]> > Subject: Re: [EMAIL PROTECTED] url proxying > To: users@httpd.apache.org, [EMAIL PROTECTED] > Date: Monday, 14 April, 2008, 1:47 PM > On Sun, Apr 13, 2008 at 11:32

Re: [EMAIL PROTECTED] url proxying

2008-04-14 Thread Krist van Besien
On Sun, Apr 13, 2008 at 11:32 PM, Melanie Pfefer <[EMAIL PROTECTED]> wrote: > hi Kirst, all, > > To use c_rehash, I must have .pem and .crt files. Correct me if I am worong > please. The remote server has a self-signed certificate that was generated > using keytool (http://tomcat.apache.org/tomc

Re: [EMAIL PROTECTED] url proxying

2008-04-13 Thread Melanie Pfefer
I am wrong please. thanks. --- On Fri, 11/4/08, Krist van Besien <[EMAIL PROTECTED]> wrote: > From: Krist van Besien <[EMAIL PROTECTED]> > Subject: Re: [EMAIL PROTECTED] url proxying > To: users@httpd.apache.org, [EMAIL PROTECTED] > Date: Friday, 11 April, 2008, 4:28 PM &

Re: [EMAIL PROTECTED] url proxying

2008-04-11 Thread Krist van Besien
On Fri, Apr 11, 2008 at 9:48 AM, Melanie Pfefer <[EMAIL PROTECTED]> wrote: > Hi everybody, > > I want to enable proxying from apache to a tomcat application running on ssl. > > Redirection is working: > RewriteRule /abc/ https://remoteserver:8443/abc/ [R=301,L] > > > But proxying is not: > Re

Re: [EMAIL PROTECTED] url proxying

2008-04-11 Thread Nils Jeppe
e URL http://myapache/abc/ the redirection works but the url changes so proxying is not working as expected. Any idea? thx --- On Fri, 11/4/08, Nils Jeppe <[EMAIL PROTECTED]> wrote: From: Nils Jeppe <[EMAIL PROTECTED]> Subject: Re: [EMAIL PROTECTED] url proxying To: users

Re: [EMAIL PROTECTED] url proxying

2008-04-11 Thread Vincent Bray
On 11/04/2008, Melanie Pfefer <[EMAIL PROTECTED]> wrote: > thanks. > SSLProxyEngine On > ProxyPass /abc/ https://remoteserver:8443/abc/ > > If I try the URL http://myapache/abc/ > the redirection works but the url changes so proxying is not working as > expected. Remember to use: ProxyPas

Re: [EMAIL PROTECTED] url proxying

2008-04-11 Thread Melanie Pfefer
ils Jeppe <[EMAIL PROTECTED]> > Subject: Re: [EMAIL PROTECTED] url proxying > To: users@httpd.apache.org > Date: Friday, 11 April, 2008, 12:04 PM > Hello Melanie, > > I am not sure if the RewriteRule behaviour is identical to > ProxyPass > od mod_proxy. > > I

Re: [EMAIL PROTECTED] url proxying

2008-04-11 Thread Nils Jeppe
Hello Melanie, I am not sure if the RewriteRule behaviour is identical to ProxyPass od mod_proxy. In mod_proxy, I believe you have to enable ssl connections to the backend with SSLProxyEngine on (or something similar, if my memory fails me), so this might be the issue here as well. Mod_pr

[EMAIL PROTECTED] url proxying

2008-04-11 Thread Melanie Pfefer
Hi everybody, I want to enable proxying from apache to a tomcat application running on ssl. Redirection is working: RewriteRule /abc/ https://remoteserver:8443/abc/ [R=301,L] But proxying is not: RewriteRule /abc/ https://remoteserver:8443/abc/ [P,L] In redirection: http://myapache/abc/ goes