[Zope] Apache & Zope (using ProxyPass) on Debian
Aaron Louie
ajlouie@u.washington.edu
Mon, 12 Mar 2001 11:21:51 -0800
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