Commit 016b6525 by Clinton Blackburn

Corrected LMS Docker devstack settings

- Fixed LMS_ROOT_URL
- Fixed Enterprise API URL
parent 14e45ad2
...@@ -9,13 +9,13 @@ LOGGING['handlers']['local'] = LOGGING['handlers']['tracking'] = { ...@@ -9,13 +9,13 @@ LOGGING['handlers']['local'] = LOGGING['handlers']['tracking'] = {
LOGGING['loggers']['tracking']['handlers'] = ['console'] LOGGING['loggers']['tracking']['handlers'] = ['console']
HOST = 'edx.devstack.edxapp:18000' HOST = 'edx.devstack.lms:18000'
SITE_NAME = HOST SITE_NAME = HOST
LMS_ROOT_URL = 'http://{}'.format(HOST) LMS_ROOT_URL = 'http://{}'.format(HOST)
ECOMMERCE_PUBLIC_URL_ROOT = 'http://localhost:18130' ECOMMERCE_PUBLIC_URL_ROOT = 'http://localhost:18130'
ECOMMERCE_API_URL = 'http://edx.devstack.ecommerce:18130/api/v2' ECOMMERCE_API_URL = 'http://edx.devstack.ecommerce:18130/api/v2'
ENTERPRISE_API_URL = 'http://enterprise.example.com/enterprise/api/v1/' ENTERPRISE_API_URL = '{}/enterprise/api/v1/'.format(LMS_ROOT_URL)
OAUTH_OIDC_ISSUER = '{}/oauth2'.format(LMS_ROOT_URL) OAUTH_OIDC_ISSUER = '{}/oauth2'.format(LMS_ROOT_URL)
......
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