Update gunicorn.conf.py

This commit is contained in:
Donald Zou 2024-08-04 18:59:45 -04:00
parent c0d26164dc
commit ca6a05e393

View File

@ -8,5 +8,6 @@ worker_class = 'gthread'
workers = 1 workers = 1
threads = 1 threads = 1
bind = f"{app_host}:{app_port}" bind = f"{app_host}:{app_port}"
print(bind)
daemon = True daemon = True
pidfile = './gunicorn.pid' pidfile = './gunicorn.pid'