[Zope] Zope on FreeBsd

Steve Spicklemire steve@spvi.com
Mon, 5 Mar 2001 07:34:01 -0500 (EST)


Hi Patrick,

   I use Zope a lot on FreeBSD with no trouble.

You don't really *need* pcgi..	in fact I've found that ProxyPass
works better for me most of the time. For apache.conf:

NameVirtualHost xx.xx.xx.xx:80

<VirtualHost xx.xx.xx.xx>

Serveradmin you@your.domain

ServerName your.server.name
ErrorLog /var/log/error_log
CustomLog /var/log/access_log common

ProxyPass / http://you.server.name:8080/
ProxyPassReverse / http://your.server.name:8080/

</VirtualHost>

Also check out:
http://www.zope.org/Members/anser/apache_zserver

-steve