1
0
mirror of https://github.com/donaldzou/WGDashboard.git synced 2024-11-06 16:00:28 +01:00
WGDashboard/src/gunicorn.conf.py

15 lines
384 B
Python
Raw Normal View History

import multiprocessing
2021-10-18 01:24:09 +02:00
import dashboard
2024-08-03 03:48:42 +02:00
global sqldb, cursor, DashboardConfig, WireguardConfigurations, AllPeerJobs, JobLogger
2024-06-17 21:40:25 +02:00
app_host, app_port = dashboard.gunicornConfig()
worker_class = 'gthread'
2024-08-03 19:25:57 +02:00
workers = 1
threads = 1
2021-10-18 01:24:09 +02:00
bind = f"{app_host}:{app_port}"
2024-08-05 01:17:41 +02:00
# print("[WGDashboard] Gunicorn app will be running at " + bind)
2021-10-18 01:24:09 +02:00
daemon = True
2024-08-05 00:59:45 +02:00
pidfile = './gunicorn.pid'
2024-08-05 01:30:48 +02:00
print_config = True