Split access_log_format specifiers description into multiply lines

Correct sphinx-build error: source/settings.rst:762: ERROR: Inconsistent literal block quoting.
This commit is contained in:
Igor Petrov 2013-12-14 01:43:16 +04:00
parent 69ab24b589
commit 708bb840a1

View File

@ -948,20 +948,20 @@ class AccessLogFormat(Setting):
%(h)s %(l)s %(u)s %(t)s "%(r)s" %(s)s %(b)s "%(f)s" "%(a)s" %(h)s %(l)s %(u)s %(t)s "%(r)s" %(s)s %(b)s "%(f)s" "%(a)s"
h: remote address | h: remote address
l: '-' | l: '-'
u: currently '-', may be user name in future releases | u: currently '-', may be user name in future releases
t: date of the request | t: date of the request
r: status line (ex: GET / HTTP/1.1) | r: status line (ex: GET / HTTP/1.1)
s: status | s: status
b: response length or '-' | b: response length or '-'
f: referer | f: referer
a: user agent | a: user agent
T: request time in seconds | T: request time in seconds
D: request time in microseconds, | D: request time in microseconds,
p: process ID | p: process ID
{Header}i: request header | {Header}i: request header
{Header}o: response header | {Header}o: response header
""" """
@ -1386,12 +1386,12 @@ class ProxyProtocol(Setting):
Example for stunnel config:: Example for stunnel config::
[https] [https]
protocol = proxy protocol = proxy
accept = 443 accept = 443
connect = 80 connect = 80
cert = /etc/ssl/certs/stunnel.pem cert = /etc/ssl/certs/stunnel.pem
key = /etc/ssl/certs/stunnel.key key = /etc/ssl/certs/stunnel.key
""" """