document the new --bind syntax.

This commit is contained in:
benoitc 2012-12-16 10:51:59 +01:00
parent aac56c9d55
commit 32395a17fc

View File

@ -358,6 +358,13 @@ class Bind(Setting):
A string of the form: 'HOST', 'HOST:PORT', 'unix:PATH'. An IP is a valid
HOST.
Multiple addresses can be bound. ex.::
$ gunicorn -b 127.0.0.1:8000 -b [::1]:8000 test:app
will bind the `test:app` application on localhost both on ipv6
and ipv4 interfaces.
"""
class Backlog(Setting):