summaryrefslogtreecommitdiffstats
path: root/mgr/mgr/pub/config/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'mgr/mgr/pub/config/config.py')
-rw-r--r--mgr/mgr/pub/config/config.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/mgr/mgr/pub/config/config.py b/mgr/mgr/pub/config/config.py
index 3eb285e..c67effd 100644
--- a/mgr/mgr/pub/config/config.py
+++ b/mgr/mgr/pub/config/config.py
@@ -13,8 +13,10 @@
# limitations under the License.
# [MSB]
+MSB_SERVICE_PROTOCOL = 'http'
MSB_SERVICE_IP = '127.0.0.1'
-MSB_SERVICE_PORT = '80'
+MSB_SERVICE_PORT = '443'
+MSB_BASE_URL = "%s://%s:%s" % (MSB_SERVICE_PROTOCOL, MSB_SERVICE_IP, MSB_SERVICE_PORT)
# [REDIS]
REDIS_HOST = '127.0.0.1'