diff options
| author | 2020-03-24 09:38:49 -0700 | |
|---|---|---|
| committer | 2020-03-24 09:38:49 -0700 | |
| commit | 2ebea7ecdf146699d68942f4b27478554504fdbd (patch) | |
| tree | 9bdf8d022cf91a409ff7d41005a3d793188ac07b /config/gunicorn.conf.py | |
| parent | Merge pull request #68 from python-discord/feat/doc/57/docker-run-cmd (diff) | |
| parent | Fix #66: venv being created in container (diff) | |
Merge pull request #69 from python-discord/bug/ci/66/pipenv-run-creates-venv
Fix venv being created in Dockerfile
Diffstat (limited to 'config/gunicorn.conf.py')
| -rw-r--r-- | config/gunicorn.conf.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/config/gunicorn.conf.py b/config/gunicorn.conf.py new file mode 100644 index 0000000..5ab11f4 --- /dev/null +++ b/config/gunicorn.conf.py @@ -0,0 +1,5 @@ +workers = 2 +bind = "0.0.0.0:8060" +logger_class = "snekbox.GunicornLogger" +access_logformat = "%(m)s %(U)s%(q)s %(s)s %(b)s %(L)ss" +access_logfile = "-" |