Commit ce38e6e5 authored by Michel Pelletier's avatar Michel Pelletier

Removed references to ZopeHTTPServer.

parent 0f36c1a6
...@@ -48,8 +48,7 @@ Zope Installation Frequently Asked Questions ...@@ -48,8 +48,7 @@ Zope Installation Frequently Asked Questions
on files and directories in your Zope installation. The var on files and directories in your Zope installation. The var
subdirectory of your installation and everything therein MUST be subdirectory of your installation and everything therein MUST be
writable by the user which runs cgi scripts on your web server writable by the user which runs cgi scripts on your web server
(usually nobody if you are using PCGI, usually your userid if you (usually nobody if you are using PCGI.)
are using ZopeHTTPServer)
If you have ensured that the PCGI info file is correct and that all If you have ensured that the PCGI info file is correct and that all
permissions are correct, you can look in the /var/tmp directory of permissions are correct, you can look in the /var/tmp directory of
......
...@@ -22,9 +22,6 @@ Running Zope ...@@ -22,9 +22,6 @@ Running Zope
threads. ZServer is currently in beta, so this may not be a good threads. ZServer is currently in beta, so this may not be a good
choice for production systems. choice for production systems.
- You can use the built-in ZopeHTTP web server. This option is
no longer recommended.
- You can use the PCGI publisher with an existing web server. - You can use the PCGI publisher with an existing web server.
This is currently the recommended way to run Zope for production This is currently the recommended way to run Zope for production
systems. systems.
...@@ -33,8 +30,7 @@ Choosing your database ...@@ -33,8 +30,7 @@ Choosing your database
We currently support two Zope databases, ZODB 2 and ZODB 3. To use We currently support two Zope databases, ZODB 2 and ZODB 3. To use
ZODB 3 use ZServer via the z2.py script described below. To use ZODB 3 use ZServer via the z2.py script described below. To use
ZODB 2, use the simple ZopeHTTP server or use PCGI publisher ZODB 2, use the PCGI publisher (without ZServer).
(without ZServer).
(Alternatives for the curious and ZPublisher aware: (Alternatives for the curious and ZPublisher aware:
...@@ -42,9 +38,8 @@ Choosing your database ...@@ -42,9 +38,8 @@ Choosing your database
described below by providing the -2 command-line option to described below by providing the -2 command-line option to
z2.py. z2.py.
- You can use ZODB 3 with the ZopeHTTPServer and the - You can use ZODB 3 with the PCGI publisher by changing the
PCGI publisher by changing the published module to published module to Zope.
Zope.
) )
Quick Start Quick Start
...@@ -172,13 +167,10 @@ Setting permissions on the var directory. ...@@ -172,13 +167,10 @@ Setting permissions on the var directory.
running Zope you should ensure that you give adequate permissions running Zope you should ensure that you give adequate permissions
to the Zope var directory for the userid Zope will run under. to the Zope var directory for the userid Zope will run under.
Depending on how you choose to run Zope you will need to give different Depending on how you choose to run Zope you will need to give
permissions to the var directory. For example if you are using different permissions to the var directory. If you use Zope with an
ZopeHTTPServer which normally runs as your userid, you need only ensure existing web server, it will probably run Zope as 'nobody'. In this
that your userid has read and write permissions to the var directory. case 'nobody' needs read and write permissions to the var directory.
If you use Zope with an existing web server, it will probably run Zope
as 'nobody'. In this case 'nobody' needs read and write permissions to
the var directory.
If you change the way you run Zope you may need to modify the permissions If you change the way you run Zope you may need to modify the permissions
of the var directory and the files in it to allow Zope to read and write of the var directory and the files in it to allow Zope to read and write
...@@ -198,27 +190,6 @@ Using ZServer ...@@ -198,27 +190,6 @@ Using ZServer
approach is preferred to avoid having to reconfigure the z2.py script approach is preferred to avoid having to reconfigure the z2.py script
after a software update. after a software update.
Notes
* 'start.py' is now depricated, use 'z2.py' instead.
* 'zinit.py' is now depricated, use 'z2.py' with 'zdeamon.py' instead.
Using Zope with ZopeHTTPServer
ZopeHTTPServer is a simple web server written in Python and it
allows you to run Zope without using PCGI and another web server.
The build script automatically creates a shell script named 'start'
which will run the built-in server. To start Zope using ZopeHTTPServer
cd to the Zope directory and issue the command::
./start
Now you should be able to access Zope through the web, just like with
ZServer::
http://localhost:9673/manage
Starting Zope with an existing web server Starting Zope with an existing web server
See the WEBSERVERS.txt file for more information about configuring Zope See the WEBSERVERS.txt file for more information about configuring Zope
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment