[Zope] Apache ProxyPass + Zope == bad?

Zachery Bir zbir@urbanape.com
Fri, 8 Mar 2002 13:11:17 -0500


On Friday, March 8, 2002, at 11:01 , Chris McDonough wrote:

> Ouch. ;-)  How did you fix it with mod_rewrite, out of curiosity?

As Richard pointed out. I didn't really fix it with mod_rewrite, I 
just turned off the capability of ProxyRequests...

But I use this stanza, mostly:

<IfModule mod_rewrite.c>
	RewriteEngine On
	RewriteLog "path/to/a/logfile"
	RewriteLogLevel 1
	RewriteRule ^/(.*) 
http://zope.domain.com:8080/VirtualHostBase/http/zope.domain.com:80/VirtualHostRoot/
$1 [P]
</IfModule>

So, like Richard says, I'm still using the Proxying... *sigh*

But he's also right, you can do a lot of neat-o things with 
mod_rewrite, but I haven't really delved that far into it.

Zac