From 2c5f76b3ed0856efc3b04e14ba4161a3612926d7 Mon Sep 17 00:00:00 2001 From: Galimede Date: Tue, 5 Jan 2021 15:36:26 +0100 Subject: [PATCH] :wrench: add https to generic --- conduit/settings.py | 1 + 1 file changed, 1 insertion(+) diff --git a/conduit/settings.py b/conduit/settings.py index 8a2ead5..b549e9f 100644 --- a/conduit/settings.py +++ b/conduit/settings.py @@ -26,6 +26,7 @@ class Config(object): 'http://0.0.0.0:4000', 'http://localhost:4000', 'http://0.0.0.0:' + os.environ.get('PORT', 8080), + 'https://0.0.0.0:' + os.environ.get('PORT', 8080), os.environ.get('BACK_PROD_URL'), os.environ.get('FRONT_PROD_URL'), ]