Re: [us...@httpd] ReverseProxy for Tomcat (AJP) not working for SSL redirects

2010-04-28 Thread Nick Kew
On Wed, 28 Apr 2010 11:22:00 +0200 Timo Meinen wrote: > ServerName it.localhost.de > ProxyPass / ajp://127.0.0.1:8009/spike/ > ProxyPassReverse/ ajp://127.0.0.1:8009/spike/ > ProxyPassReverseCookiePath /spike / > > (This is the configuration in the Virtual

Re: [us...@httpd] change 404 status for given filespec?

2010-04-28 Thread Gary Webster
Hello. Thanks for the response. Would the rewrite be 'lightweight' ? I don't understand how I would use it to change the status code (from 404) when the file isn't there, yet not interrupt when the file does show up? You are talking about "conditional logging" in Apache? I don't think that wou

AW: [us...@httpd] Intercepting Error Responses from a handler

2010-04-28 Thread Schermuly-Koch, Achim
>> i have an apache setup using a proprietary handler (let's call it >> "my-handler") >> to render the content >> >> >> SetHandler my-handler >> >> >> This is similar to using a php-script handler, i guess. >> >> Now the handler does some URI resolution magic, thus it might return a >> 404-not

Re: [us...@httpd] Intercepting Error Responses from a handler

2010-04-28 Thread John Iliffe
On Wed, 2010-28-04 at 17:54 +0200, Schermuly-Koch, Achim wrote: > Hi all, > > i have an apache setup using a proprietary handler (let's call it > "my-handler") to render the content > > > SetHandler my-handler > > > This is similar to using a php-script handler, i guess. > > Now the handle

[us...@httpd] Intercepting Error Responses from a handler

2010-04-28 Thread Schermuly-Koch, Achim
Hi all, i have an apache setup using a proprietary handler (let's call it "my-handler") to render the content SetHandler my-handler This is similar to using a php-script handler, i guess. Now the handler does some URI resolution magic, thus it might return a 404-not found response. I woul

RE: [us...@httpd] RE: Wield problem with a reverse proxy server

2010-04-28 Thread Ruiyuan Jiang
Hi, Justin The request is when people type the URL www.survey.juicycouture.com with or without trailing tellus, the client request needs to be redirected to the site survery.juicycouture.com/tellus which is hosted by an outside ISP. I host the URL www.survey.juicycouture.com and www.survey.juic

Re: [us...@httpd] RE: Wield problem with a reverse proxy server

2010-04-28 Thread Justin Pasher
- Original Message - From: Ruiyuan Jiang Date: Tue, 27 Apr 2010 15:54:24 -0400 Subject: [us...@httpd] RE: Wield problem with a reverse proxy server To: users@httpd.apache.org Hi, all I posted below email but got no answer. Now I found that my Apache 2.2.15 stopped working. It behave

Re: [us...@httpd] HTML rendering capability

2010-04-28 Thread Tom Evans
On Wed, Apr 28, 2010 at 3:12 AM, rangeli nepal wrote: > Good Evening Everybody, > > I am not sure if I am asking this question at right forum or not. I am sorry > if it is not the right forum. > I am wondering "if there is way based on http headers to determine if the > requesting party has html r

Re: [us...@httpd] HTML rendering capability

2010-04-28 Thread Jonathan Zuckerman
On Tue, Apr 27, 2010 at 10:12 PM, rangeli nepal wrote: > Good Evening Everybody, > > I am not sure if I am asking this question at right forum or not. I am > sorry if it is not the right forum. > I am wondering "if there is way based on http headers to determine if the > requesting party has html

Re: [us...@httpd] ReverseProxy for Tomcat (AJP) not working for SSL redirects

2010-04-28 Thread Timo Meinen
Hi, yes SSLProxyEngine On is activated in the SSL VirtualHost. But this doens't help. Timo 2010/4/28 Arunkumar Janarthanan : > Hi, > > Did you try the "sslProxyEngine On", However I have got the specific error > in my Apache log stating have to check this one. > > Hope this helps. > > Best Regar

Re: [us...@httpd] ReverseProxy for Tomcat (AJP) not working for SSL redirects

2010-04-28 Thread Arunkumar Janarthanan
Hi, Did you try the "sslProxyEngine On", However I have got the specific error in my Apache log stating have to check this one. Hope this helps. Best Regards, Arun Janarthanan On Wed, Apr 28, 2010 at 5:44 AM, Mauri wrote: > Hi Timo. > > i don't know ajp protocol, but I have a similar configur

Re: [us...@httpd] ReverseProxy for Tomcat (AJP) not working for SSL redirects

2010-04-28 Thread Mauri
Hi Timo. i don't know ajp protocol, but I have a similar configuration. this is my configuration that work fine with apache, mod_proxy as frontend and a tomcat 6 with SSL (8443) as backend. u don't set the end point (spike/ ) but only the ProxyPass. I'm using another

[us...@httpd] ReverseProxy for Tomcat (AJP) not working for SSL redirects

2010-04-28 Thread Timo Meinen
Hi, I have a problem with our reverse proxy. I asked this question to the tomcat-users mailinglist, too, but no one could help me and I am absolutely stuck with this problem. So, I hope some of the httpd experts here, may have an idea: Our configuration is a Apache 2.2 web server, acting as a rev

Re: [us...@httpd] Redirecting URL to a location

2010-04-28 Thread Luc Bastiaenssen
Another way to consider is to use a redirect like this: RedirectMatch permanent ^/notes([/]*)$ /notes/ Luc On 28/04/2010 9:06, Igor Cicimov wrote: On the second thought this should work (tested):    DirectorySlash On Any way, shouldn't the trailing slash automatically be added by mod

Re: [us...@httpd] Redirecting URL to a location

2010-04-28 Thread Igor Cicimov
On the second thought this should work (tested): DirectorySlash On Any way, shouldn't the trailing slash automatically be added by mod_dir starting from apache2.0.5? Igor On Wed, Apr 28, 2010 at 4:51 PM, Edgar Frank wrote: > 2010/04/28 Yang Zhang > >Everything works fine, but is there a