Re: Apache (base) and proxy_module

2010-11-23 Thread Björn Ketelaars
2010/11/23 Bjvrn Ketelaars : > I'm running an application with a web-interface behind an Apache > reverse proxy (from base). As this application is on the same host as > Apache it is running on another port (8080 instead of 80). > Unfortunately Apache sends back the wrong Host-Header. After careful

Re: Apache (base) and proxy_module

2010-11-23 Thread Дмитрий Царьков
Sorry, I was too fast to answer. I believe it can make sense. 2010/11/23 PPP2 : > 2010/11/23 BjC6rn Ketelaars : >> - B B B B B if (destportstr != NULL && destport != DEFAULT_HTTP_PORT) >> + B B B B B if (destportstr != NULL || destport != DEFAULT_HTTP_PORT) > > Your expression is always

Re: Apache (base) and proxy_module

2010-11-23 Thread Дмитрий Царьков
2010/11/23 BjC6rn Ketelaars : > - B B B B B if (destportstr != NULL && destport != DEFAULT_HTTP_PORT) > + B B B B B if (destportstr != NULL || destport != DEFAULT_HTTP_PORT) Your expression is always true, no sense in checking. -- Dmitrij D. Czarkoff

Apache (base) and proxy_module

2010-11-23 Thread Björn Ketelaars
I'm running an application with a web-interface behind an Apache reverse proxy (from base). As this application is on the same host as Apache it is running on another port (8080 instead of 80). Unfortunately Apache sends back the wrong Host-Header. After carefully checking the CVS-log for a bit of