[Solved]: Apache::Compress + mod_proxy problem

2000-12-22 Thread Edward Moon
Here's a patch for Apache::Compress that passes off proxied requests to mod_proxy. Without this patch Apache::Compress will return an internal server error since it can't find the proxied URI on the local filesystem. Much of the patch was lifted from chapter 7 of the Eagle book. Right now the c

Apache::Compress + mod_proxy problem

2000-12-15 Thread Edward Moon
I've run into a problem with Apache::Compress in dealing with mod_proxyed content. The author of Apace::Compress suggested that I post the problem here. I'm running apache 1.3.14, mod_perl 1.24_01, & Apache::Compress 1.003 on a RedHat 6.2 linux box. I get an internal server error when ever I try

Re: mod_proxy problem

2000-04-25 Thread Kees Vonk 7249 24549
> | > |DocumentRoot "/app/env_control/httpd/DocumentRoot" > | > | # disable mason for this location > | SetHandler default-handler > | > |ProxyPass/Test/ http://myhost:8084/Test/ > |ProxyPassReverse /Test/ http://myhost:8084/Test/ > | > > | > | When I try t

Re: mod_proxy problem

2000-04-25 Thread Ime Smits
| |DocumentRoot "/app/env_control/httpd/DocumentRoot" | | # disable mason for this location | SetHandler default-handler | |ProxyPass/Test/ http://myhost:8084/Test/ |ProxyPassReverse /Test/ http://myhost:8084/Test/ | | | When I try to access location /Test

mod_proxy problem

2000-04-25 Thread Kees Vonk 7249 24549
I have the following directives in my httpd.conf: ... DocumentRoot "/app/env_control/httpd/DocumentRoot" # disable mason for this location SetHandler default-handler ProxyPass/Test/ http://myhost:8084/Test/ ProxyPassReverse /Test/ http://myhost:8084/Test/

mod_proxy problem

2000-01-26 Thread Eugene Miretskiy
Hello, I want to cache the output of mod_perl scripts (they produce correct content-length, last-modify, and expires headers). If I put, ProxyPass/ProxyPassReverse directive in server section, everything works fine. But if I put these directives inside VirtualHost, the content is no longer cach