From 05187cacea3a8e72c470bde32fa9eb33ae8be70a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Tue, 13 Feb 2018 16:51:28 +0100 Subject: [PATCH] Add comment to config.py to point at SERVER_NAME --- pillar/config.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pillar/config.py b/pillar/config.py index 30726d4e..bca2a031 100644 --- a/pillar/config.py +++ b/pillar/config.py @@ -15,6 +15,10 @@ PILLAR_SERVER_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) SCHEME = 'https' PREFERRED_URL_SCHEME = SCHEME +# Be sure to set this in your config_local: +# SERVER_NAME = 'blender-cloud:5001' +# PILLAR_SERVER_ENDPOINT = f'{SCHEME}://{SERVER_NAME}/api/' + STORAGE_DIR = getenv('PILLAR_STORAGE_DIR', '/data/storage/pillar') PORT = 5000 HOST = '0.0.0.0'