mirror of
https://github.com/donaldzou/WGDashboard.git
synced 2024-11-06 16:00:28 +01:00
27 lines
791 B
Python
27 lines
791 B
Python
import dashboard
|
|
from datetime import datetime
|
|
|
|
global sqldb, cursor, DashboardConfig, WireguardConfigurations, AllPeerJobs, JobLogger
|
|
app_host, app_port = dashboard.gunicornConfig()
|
|
date = datetime.today().strftime('%Y_%m_%d_%H_%M_%S')
|
|
|
|
|
|
def post_worker_init(worker):
|
|
dashboard.startThreads()
|
|
|
|
|
|
worker_class = 'gthread'
|
|
workers = 1
|
|
threads = 1
|
|
bind = f"{app_host}:{app_port}"
|
|
daemon = True
|
|
pidfile = './gunicorn.pid'
|
|
wsgi_app = "dashboard:app"
|
|
accesslog = f"./log/access_{date}.log"
|
|
log_level = "debug"
|
|
capture_output = True
|
|
errorlog = f"./log/error_{date}.log"
|
|
print(f"[WGDashboard] WGDashboard w/ Gunicorn will be running on {bind}", flush=True)
|
|
print(f"[WGDashboard] Access log file is at {accesslog}", flush=True)
|
|
print(f"[WGDashboard] Error log file is at {errorlog}", flush=True)
|