diff options
author | 2022-06-01 11:09:30 -0700 | |
---|---|---|
committer | 2022-06-01 11:09:30 -0700 | |
commit | b0fb2bf8e52f9e340a8f77503c68daafeed4d41d (patch) | |
tree | 132d3b703c1a29f5cc6de484d6317220ffc94da5 /config/gunicorn.conf.py | |
parent | Merge #139 - use pip-tools instead of Pipenv (diff) | |
parent | Fix typo in Dockerfile comment (diff) |
Merge #140 - add pyproject.toml and versioning
Diffstat (limited to 'config/gunicorn.conf.py')
-rw-r--r-- | config/gunicorn.conf.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config/gunicorn.conf.py b/config/gunicorn.conf.py index 5ab11f4..563f8ea 100644 --- a/config/gunicorn.conf.py +++ b/config/gunicorn.conf.py @@ -1,5 +1,6 @@ workers = 2 bind = "0.0.0.0:8060" -logger_class = "snekbox.GunicornLogger" +logger_class = "snekbox.utils.gunicorn.GunicornLogger" access_logformat = "%(m)s %(U)s%(q)s %(s)s %(b)s %(L)ss" access_logfile = "-" +wsgi_app = "snekbox:SnekAPI" |