From c9c0145bbbf0380822db0570e1f05bd4c3f6f8d8 Mon Sep 17 00:00:00 2001 From: Tanner Collin Date: Fri, 14 Feb 2020 22:39:44 +0000 Subject: [PATCH] Add my.protospace.ca to allowed hosts --- apiserver/apiserver/settings.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apiserver/apiserver/settings.py b/apiserver/apiserver/settings.py index 295da5d..ef3a625 100644 --- a/apiserver/apiserver/settings.py +++ b/apiserver/apiserver/settings.py @@ -31,7 +31,7 @@ DEBUG = DEBUG_ENV or False if DEBUG: print('Debug mode ON') -PRODUCTION_HOST = 'my.dns.t0.vc' +PRODUCTION_HOST = 'my.protospace.ca' # production hosts @@ -46,6 +46,7 @@ if DEBUG: 'spaceport-api.dns.t0.vc', 'api.spaceport.dns.t0.vc', 'api.my.dns.t0.vc', + 'api.my.protospace.ca', ] SECURE_PROXY_SSL_HEADER = ('HTTP_X_FORWARDED_PROTO', 'https')