Commit 01d79c51 by Clinton Blackburn Committed by GitHub

Merge pull request #14394 from edx/clintonb/fix-oauth-settings

Corrected OAuth URL for Docker-base devstack
parents d9ccdbc4 bb7c5b33
......@@ -11,7 +11,7 @@ LOGGING['loggers']['tracking']['handlers'] = ['console']
HOST = 'edx.devstack.edxapp:18000'
SITE_NAME = HOST
LMS_ROOT_URL = 'http://{}:18000'.format(HOST)
LMS_ROOT_URL = 'http://{}'.format(HOST)
# This is the public-facing host used for previews
LMS_BASE = 'localhost:18000'
......
......@@ -11,7 +11,7 @@ LOGGING['loggers']['tracking']['handlers'] = ['console']
HOST = 'edx.devstack.edxapp:18000'
SITE_NAME = HOST
LMS_ROOT_URL = 'http://{}:18000'.format(HOST)
LMS_ROOT_URL = 'http://{}'.format(HOST)
ECOMMERCE_PUBLIC_URL_ROOT = "http://edx.devstack.ecommerce:18130"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment