mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
prepare 0.6.2. release
This commit is contained in:
parent
5f11fd024b
commit
6170d5a503
@ -20,6 +20,7 @@ Example gunicorn.conf.py
|
|||||||
umask = 0 # Umask to set when daemonizing
|
umask = 0 # Umask to set when daemonizing
|
||||||
user = None # Change process owner to user
|
user = None # Change process owner to user
|
||||||
group = None # Change process group to group
|
group = None # Change process group to group
|
||||||
|
proc_name = None # Change the process name
|
||||||
|
|
||||||
def after_fork(server, worker):
|
def after_fork(server, worker):
|
||||||
fmt = "worker=%s spawned pid=%s"
|
fmt = "worker=%s spawned pid=%s"
|
||||||
@ -64,6 +65,9 @@ loglevel:
|
|||||||
|
|
||||||
pidfile:
|
pidfile:
|
||||||
A file to store the master's PID.
|
A file to store the master's PID.
|
||||||
|
|
||||||
|
proc_name:
|
||||||
|
If `setproctitle <http://pypi.python.org/pypi/setproctitle>`_ is installed, it allows you to set the process name for this Gunicorn instance.
|
||||||
|
|
||||||
umask:
|
umask:
|
||||||
Used to set the umask when daemonizing.
|
Used to set the umask when daemonizing.
|
||||||
|
|||||||
@ -4,6 +4,16 @@ title: News
|
|||||||
News
|
News
|
||||||
====
|
====
|
||||||
|
|
||||||
|
0.6.2 / 2010-03-01
|
||||||
|
------------------
|
||||||
|
|
||||||
|
* Added support for chunked response.
|
||||||
|
* Added possibility to configure proc_name in config file.
|
||||||
|
* Improved HTTP parser. We now use buffers instead of strings to store temporary data.
|
||||||
|
* Improved performance in send.
|
||||||
|
* Workers are now murdered by age (the older is killed the first).
|
||||||
|
|
||||||
|
|
||||||
0.6.1 / 2010-02-24
|
0.6.1 / 2010-02-24
|
||||||
------------------
|
------------------
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user