From e5259bb56c2736f65d348107d0484d5019e95a9b Mon Sep 17 00:00:00 2001 From: Francesco Siddi Date: Sat, 14 Apr 2018 19:31:57 +0200 Subject: [PATCH] Config: provide a correct suggestion for SERVER_NAME --- pillar/config.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pillar/config.py b/pillar/config.py index 6f0b9d87..05b9be2a 100644 --- a/pillar/config.py +++ b/pillar/config.py @@ -16,7 +16,7 @@ SCHEME = 'https' PREFERRED_URL_SCHEME = SCHEME # Be sure to set this in your config_local: -# SERVER_NAME = 'blender-cloud:5001' +# SERVER_NAME = 'pillar.local:5000' # PILLAR_SERVER_ENDPOINT = f'{SCHEME}://{SERVER_NAME}/api/' STORAGE_DIR = getenv('PILLAR_STORAGE_DIR', '/data/storage/pillar') @@ -34,8 +34,6 @@ AUTH_TOKEN_HMAC_KEY = b'' # Authentication settings BLENDER_ID_ENDPOINT = 'http://blender-id:8000/' -PILLAR_SERVER_ENDPOINT = 'http://pillar:5001/api/' - CDN_USE_URL_SIGNING = True CDN_SERVICE_DOMAIN_PROTOCOL = 'https' CDN_SERVICE_DOMAIN = '-CONFIG-THIS-'