diff --git a/etc/gunicorn.conf.py b/etc/gunicorn.conf.py index 9200723..e64a662 100644 --- a/etc/gunicorn.conf.py +++ b/etc/gunicorn.conf.py @@ -1,5 +1,3 @@ -import socket - import gunicorn wsgi_app = "website.wsgi:application" @@ -9,16 +7,10 @@ preload_app = True bind = "0.0.0.0" max_requests = 1200 max_requests_jitter = 100 +forwarded_allow_ips = "*" # Run an additional thread so the GIL isn't sitting completely idle threads = 2 # Replace gunicorn's 'Server' HTTP header gunicorn.SERVER_SOFTWARE = gunicorn.SERVER = "Wouldn't you like to know" - -# HACK: Allow traefik to send forwarded IPs -# CIDR isn't supported here sadly -try: - forwarded_allow_ips = socket.gethostbyname("traefik") -except socket.gaierror: - pass