[Zope-Checkins] CVS: Zope/doc - WEBSERVER.txt:1.22.8.2
Andreas Jung
andreas at andreas-jung.com
Fri Sep 10 13:07:37 EDT 2004
Update of /cvs-repository/Zope/doc
In directory cvs.zope.org:/tmp/cvs-serv18945/doc
Modified Files:
Tag: Zope-2_7-branch
WEBSERVER.txt
Log Message:
fixed zope.conf directives
=== Zope/doc/WEBSERVER.txt 1.22.8.1 => 1.22.8.2 ===
--- Zope/doc/WEBSERVER.txt:1.22.8.1 Mon Apr 19 14:41:36 2004
+++ Zope/doc/WEBSERVER.txt Fri Sep 10 13:07:37 2004
@@ -55,9 +55,9 @@
server. You can do this by adding a section to the etc/zope.conf
file like this::
- <pcgi-server>
+ <persistent-cgi>
address /path/to/PCGI/resource/file
- </pcgi-server>
+ </persistent-cgi>
Note, you must have gone through the directions in 'INSTALL.txt' for
this to work.
@@ -142,20 +142,20 @@
write to the socket. For illustrative purposes, I will use
'/tmp/zope.soc'.
- This can be configured by adding a fcgi-server section in your
+ This can be configured by adding a fast-cgi section in your
etc/zope.conf file. The section should look like this for a TCP
port::
- <fcgi-server>
+ <fast-cgi>
address localhost:8889
- </fcgi-server>
+ </fast-cgi>
To use a Unix domain socket instead, specify the path of the socket
file instead of a [hostname:]port::
- <fcgi-server>
+ <fast-cgi>
address /tmp/zope.soc
- </fcgi-server>
+ </fast-cgi>
You can start Zope at this point by running the 'runzope' script::
More information about the Zope-Checkins
mailing list