2022-07-28 14:53:22 +01:00
|
|
|
wsgi_app = "website.wsgi:application"
|
|
|
|
disable_redirect_access_to_syslog = True
|
|
|
|
preload_app = True
|
2024-01-13 21:43:10 +00:00
|
|
|
bind = "127.0.0.1:8080"
|
2023-07-15 17:47:21 +01:00
|
|
|
max_requests = 1200
|
2023-02-21 21:42:41 +00:00
|
|
|
max_requests_jitter = 50
|
2023-02-06 20:03:56 +00:00
|
|
|
forwarded_allow_ips = "*"
|
2022-07-28 14:53:22 +01:00
|
|
|
|
2024-01-13 22:52:37 +00:00
|
|
|
# Run additional threads so the GIL isn't sitting completely idle
|
|
|
|
threads = 4
|