From c2642259b40c39e0057a749a8bf779692c05019f Mon Sep 17 00:00:00 2001 From: Donald Zou Date: Thu, 12 Dec 2024 18:31:00 +0800 Subject: [PATCH] Update gunicorn.conf.py --- src/gunicorn.conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gunicorn.conf.py b/src/gunicorn.conf.py index a9278d8..3e41b94 100644 --- a/src/gunicorn.conf.py +++ b/src/gunicorn.conf.py @@ -32,8 +32,8 @@ if os.path.exists("./ssl-tls.ini"): certfile = cert keyfile = pem print(f"[Gunicorn][HTTPS] Found certificate and private key file", flush=True) - print(f"[Gunicorn][HTTPS] Certificate: ${certfile}", flush=True) - print(f"[Gunicorn][HTTPS] Private Key: ${keyfile}", flush=True) + print(f"[Gunicorn][HTTPS] Certificate: {certfile}", flush=True) + print(f"[Gunicorn][HTTPS] Private Key: {keyfile}", flush=True) print(f"[Gunicorn] WGDashboard w/ Gunicorn will be running on {bind}", flush=True)