2021-10-24 22:41:06 +02:00
|
|
|
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()
|
2021-10-24 22:41:06 +02:00
|
|
|
|
|
|
|
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
|