From b261158bf27d18f72a962b8ed19da3082d6adbb3 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz <me@kennethreitz.org> Date: Wed, 13 Dec 2017 13:12:26 -0500 Subject: [PATCH] Make gunicorn default access log to stdout (#490) * make gunicorn default access log to stdout * Update python.gunicorn.sh --- vendor/python.gunicorn.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/vendor/python.gunicorn.sh b/vendor/python.gunicorn.sh index 164ca075..7484c561 100755 --- a/vendor/python.gunicorn.sh +++ b/vendor/python.gunicorn.sh @@ -1,2 +1,5 @@ # Automatic configuration for Gunicorn's ForwardedAllowIPS setting. export FORWARDED_ALLOW_IPS='*' + +# Automatic configuration for Gunicorn's stdout access log setting. +export GUNICORN_CMD_ARGS="--access-logfile -" -- GitLab