From dfb715b0cc241a962148da54621d9091c3a3063d Mon Sep 17 00:00:00 2001 From: benoitc Date: Fri, 26 Mar 2010 12:15:21 +0100 Subject: [PATCH] s/Installing/Installation --- doc/htdocs/configuration.html | 4 ++-- doc/site/installation.rst | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/htdocs/configuration.html b/doc/htdocs/configuration.html index 53608f7d..e207810a 100644 --- a/doc/htdocs/configuration.html +++ b/doc/htdocs/configuration.html @@ -53,7 +53,7 @@

Example gunicorn.conf.py

-arbiter="egg:gunicorn"  # Or "egg:gunicorn#eventlet" (eventlet or gevent)
+arbiter = "egg:gunicorn"  # Or "egg:gunicorn#eventlet" (eventlet or gevent)
 backlog = 2048
 bind = "127.0.0.1:8000" # Or "unix:/tmp/gunicorn.sock"
 daemon = False          # Whether work in the background
@@ -84,7 +84,7 @@ before_exec=lambda server: server.log.info("Forked child, reexecuting"
 
after_fork(server, worker):
This is called by the worker after initialization.
arbiter:
-
The arbiter you want to use. An arbiter maintain the workers processes alive. It launches or kills them if needed. It also manages application reloading via SIGHUP/USR2. By default it's egg:gunicorn#main. This arbiter only support fast clients connections. If you need to create a sleepy application or handling keepalive set it to egg:gunicorn#eventlet to use it with Eventlet or egg:gunicorn#gevent with Gevent. Eventlet arbiter can also be used with Twisted by using Eventlet helper.
+
The arbiter you want to use. An arbiter maintain the workers processes alive. It launches or kills them if needed. It also manages application reloading via SIGHUP/USR2. By default it's egg:gunicorn#main. This arbiter only support fast clients connections. If you need to create a sleepy application or handling keepalive set it to egg:gunicorn#eventlet to use it with Eventlet or egg:gunicorn#gevent with Gevent. Eventlet arbiter can also be used with Twisted by using its helper.
backlog:
The backlog parameter defines the maximum length for the queue of pending connections see listen(2) for more information. The default is 2048.
before_fork(server, worker):
diff --git a/doc/site/installation.rst b/doc/site/installation.rst index 88427803..da56901f 100644 --- a/doc/site/installation.rst +++ b/doc/site/installation.rst @@ -49,7 +49,7 @@ If you've cloned the git repository, its highly recommended that you use the ``d $ python setup.py develop -Installing requirements for sleepy application handling +Installation requirements for sleepy application handling ------------------------------------------------------- If you want to handle `sleepy application `_ you will need to install `Eventlet`_ or `Gevent`_.