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
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
> |
> |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
|
|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
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/
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