diff options
author | 2022-05-30 20:59:47 -0700 | |
---|---|---|
committer | 2022-05-30 20:59:47 -0700 | |
commit | 416eabe3ac6224a17875ab2ae466666afc62ca4d (patch) | |
tree | 197ae4bed9e57c83b839ed777d346dbd10d7cd9c /config/gunicorn.conf.py | |
parent | Remove redundant module for creating the WSGI app (diff) |
Specify wsgi_app in Gunicorn config
Diffstat (limited to 'config/gunicorn.conf.py')
-rw-r--r-- | config/gunicorn.conf.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config/gunicorn.conf.py b/config/gunicorn.conf.py index 5812c07..8b40d35 100644 --- a/config/gunicorn.conf.py +++ b/config/gunicorn.conf.py @@ -3,3 +3,4 @@ bind = "0.0.0.0:8060" 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.api:SnekAPI" |