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)