From 22692a6066c955323087bb514735828b948a02df Mon Sep 17 00:00:00 2001 From: SKairinos Date: Tue, 19 Sep 2023 11:32:08 +0100 Subject: [PATCH] fix: env var keys --- codeforlife/settings/custom.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/codeforlife/settings/custom.py b/codeforlife/settings/custom.py index d3bd0e99..e722c712 100644 --- a/codeforlife/settings/custom.py +++ b/codeforlife/settings/custom.py @@ -11,9 +11,9 @@ SERVICE_IS_ROOT = bool(int(os.getenv("SERVICE_IS_ROOT", "0"))) # The protocol, domain and port of the current service. -SERVICE_PROTOCOL = os.getenv("SITE_PROTOCOL", "http") -SERVICE_DOMAIN = os.getenv("SITE_DOMAIN", "localhost") -SERVICE_PORT = int(os.getenv("SITE_PORT", "8000")) +SERVICE_PROTOCOL = os.getenv("SERVICE_PROTOCOL", "http") +SERVICE_DOMAIN = os.getenv("SERVICE_DOMAIN", "localhost") +SERVICE_PORT = int(os.getenv("SERVICE_PORT", "8000")) # The base url of the current service. # The root service does not need its name included in the base url.