This commit is contained in:
benoitc 2013-12-26 13:54:35 +01:00
parent 3c659558f2
commit 26a2e104cf
2 changed files with 11 additions and 7 deletions

View File

@ -274,9 +274,6 @@ Daemonize the Gunicorn process.
Detaches the server from the controlling terminal and enters the
background.
Server Mechanic
---------------
raw_env
~~~~~~~
@ -291,9 +288,6 @@ Pass variables to the execution environment. Ex.::
and test for the foo variable environement in your application.
Server Mechanics
----------------
pidfile
~~~~~~~
@ -304,6 +298,16 @@ A filename to use for the PID file.
If not set, no PID file will be written.
worker_tmp_dir
~~~~~~~~~~~~~~
* ``--worker-tmp-dir DIR``
* ``None``
A directory to use for the worker heartbeat temporary file.
If not set, the default temporary directory will be used.
user
~~~~

View File

@ -771,7 +771,7 @@ class Daemon(Setting):
class Env(Setting):
name = "raw_env"
action = "append"
section = "Server Mechanic"
section = "Server Mechanics"
cli = ["-e", "--env"]
meta = "ENV"
validator = validate_list_string