diff options
author | 2020-12-05 15:40:04 +0000 | |
---|---|---|
committer | 2020-12-05 15:40:04 +0000 | |
commit | 862a982115bc6feb46c082484740765b0eac5caa (patch) | |
tree | 6440389a33e5aa43c6d6a55a79b36c5eee6b4fb4 | |
parent | Merge pull request #426 from python-discord/sebastiaan/backend/refactor-deplo... (diff) |
Update gunicorn configuration options
-rwxr-xr-x | manage.py | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -163,7 +163,10 @@ class SiteManager: "-b", "0.0.0.0:8000", "pydis_site.wsgi:application", "--threads", "8", - "-w", "4" + "-w", "4", + "--max-requests-jitter", "1000", + "--statsd_host", "graphite.default.svc.cluster.local:8125", + "--statsd_prefix", "site", ] # Run gunicorn for the production server. |