From c3f0882a100ddf7cbcdee465d5d1a5daf500d7b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Mon, 18 Apr 2016 12:05:17 +0200 Subject: [PATCH] changed default scheme to HTTPS --- pillar/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pillar/config.py b/pillar/config.py index 8216b531..0ed0966a 100644 --- a/pillar/config.py +++ b/pillar/config.py @@ -3,7 +3,7 @@ from collections import defaultdict RFC1123_DATE_FORMAT = '%a, %d %b %Y %H:%M:%S GMT' -SCHEME = 'http' +SCHEME = 'https' STORAGE_DIR = '/data/storage/pillar' SHARED_DIR = '/data/storage/shared' PORT = 5000