Documentation formatting

This commit is contained in:
Randall Leeds 2014-01-30 16:49:16 -08:00
parent 1f7d3429c2
commit 5d13659f0e
2 changed files with 8 additions and 7 deletions

View File

@ -246,7 +246,7 @@ Systemd
-------
A tool that is starting to be common on linux systems is Systemd_. Here
are configurations files to set the gunicorn launch in systemd and
are configurations files to set the gunicorn launch in systemd and
the interfaces on which gunicorn will listen. The sockets will be managed by
systemd:

View File

@ -1083,12 +1083,13 @@ class SyslogTo(Setting):
desc = """\
Address to send syslog messages.
Adress are a string of the form:
- 'unix://PATH#TYPE' : for unix domain socket. TYPE can be 'stream'
for the stream driver or 'dgram' for the dgram driver. 'stream' is
the default.
- 'udp://HOST:PORT' : for UDP sockets
- 'tcp://HOST:PORT' : for TCP sockets
Address is a string of the form:
* 'unix://PATH#TYPE' : for unix domain socket. TYPE can be 'stream'
for the stream driver or 'dgram' for the dgram driver.
'stream' is the default.
* 'udp://HOST:PORT' : for UDP sockets
* 'tcp://HOST:PORT' : for TCP sockets
"""