12 Mar
2001
12 Mar
'01
7:21 p.m.
A tip for those of you getting 500 Proxy Errors when serving Zope through Apache using ProxyPass...
From the How-To (http://www.zope.org/Members/anser/apache_zserver/): ProxyPass /Zope/ http://fightclub.org:8080/ ProxyPassReverse /Zope/ http://fightclub.org:8080/
This will not work on some server configurations (ie Debian). Instead of the above, try: ProxyPass /Zope/ http://localhost:8080/ ProxyPassReverse /Zope/ http://localhost:8080/ ajl