Files
WGDashboard/src/gunicorn.conf.py
T
2021-12-21 22:15:23 +03:00

7 lines
138 B
Python

import dashboard
app_host, app_port = dashboard.get_host_bind()
bind = f"{app_host}:{app_port}"
daemon = True
pidfile = './gunicorn.pid'