From 49075cbc601677fd1ab1e59d28951d447aaa6026 Mon Sep 17 00:00:00 2001 From: Francesco Siddi Date: Sat, 23 Jun 2018 01:25:35 +0200 Subject: [PATCH] Local development server uses http, not https --- pillar/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pillar/config.py b/pillar/config.py index 81e8ae54..a0790466 100644 --- a/pillar/config.py +++ b/pillar/config.py @@ -32,7 +32,7 @@ SECRET_KEY = '' AUTH_TOKEN_HMAC_KEY = b'' # Authentication settings -BLENDER_ID_ENDPOINT = 'https://id.local:8000' +BLENDER_ID_ENDPOINT = 'http://id.local:8000' CDN_USE_URL_SIGNING = True CDN_SERVICE_DOMAIN_PROTOCOL = 'https'