From 8e3e545321c62a1dced99c1fe115a89b78511ef5 Mon Sep 17 00:00:00 2001 From: Vivian Ho Date: Fri, 3 Jun 2016 14:30:37 -0700 Subject: [PATCH] updated docs --- docs/source/settings.rst | 49 ++++++++++++++++++++-------------------- gunicorn/config.py | 49 ++++++++++++++++++++-------------------- 2 files changed, 49 insertions(+), 49 deletions(-) diff --git a/docs/source/settings.rst b/docs/source/settings.rst index c4c6aced..75b34da7 100644 --- a/docs/source/settings.rst +++ b/docs/source/settings.rst @@ -471,31 +471,30 @@ access_log_format The access log format. -=========== =========== -Identifier Description -=========== =========== -h remote address -l ``'-'`` -u user name -t date of the request -r status line (e.g. ``GET / HTTP/1.1``) -m request method -U URL path without query string -q query string -H protocol -s status -B response length -b response length or ``'-'`` (CLF format) -f referer -a user agent -T request time in seconds -D request time in microseconds -L request time in decimal seconds -p process ID -{Header}i request header -{Header}o response header -{Variable}e environment variable -=========== =========== +========== =========== +Identifier Description +========== =========== +h remote address +l ``'-'`` +u user name +t date of the request +r status line (e.g. ``GET / HTTP/1.1``) +m request method +U URL path without query string +q query string +H protocol +s status +B response length +b response length or ``'-'`` (CLF format) +f referer +a user agent +T request time in seconds +D request time in microseconds +L request time in decimal seconds +p process ID +{Header}i request header +{Header}o response header +========== =========== errorlog ~~~~~~~~ diff --git a/gunicorn/config.py b/gunicorn/config.py index af63407c..b42563f8 100644 --- a/gunicorn/config.py +++ b/gunicorn/config.py @@ -1074,30 +1074,31 @@ class AccessLogFormat(Setting): desc = """\ The access log format. - ========== =========== - Identifier Description - ========== =========== - h remote address - l ``'-'`` - u user name - t date of the request - r status line (e.g. ``GET / HTTP/1.1``) - m request method - U URL path without query string - q query string - H protocol - s status - B response length - b response length or ``'-'`` (CLF format) - f referer - a user agent - T request time in seconds - D request time in microseconds - L request time in decimal seconds - p process ID - {Header}i request header - {Header}o response header - ========== =========== + =========== =========== + Identifier Description + =========== =========== + h remote address + l ``'-'`` + u user name + t date of the request + r status line (e.g. ``GET / HTTP/1.1``) + m request method + U URL path without query string + q query string + H protocol + s status + B response length + b response length or ``'-'`` (CLF format) + f referer + a user agent + T request time in seconds + D request time in microseconds + L request time in decimal seconds + p process ID + {Header}i request header + {Header}o response header + {Variable}e environment variable + =========== =========== """