diff --git a/tutormfe/patches/openedx-lms-development-settings b/tutormfe/patches/openedx-lms-development-settings index ac347fde..4a628b22 100644 --- a/tutormfe/patches/openedx-lms-development-settings +++ b/tutormfe/patches/openedx-lms-development-settings @@ -29,6 +29,7 @@ AUTHN_MICROFRONTEND_DOMAIN = "{{ MFE_HOST }}/authn" MFE_CONFIG["DISABLE_ENTERPRISE_LOGIN"] = True {% elif app_name == "account" %} ACCOUNT_MICROFRONTEND_URL = "http://{{ MFE_HOST }}:{{ app["port"] }}/account" +MFE_CONFIG["ACCOUNT_SETTINGS_URL"]= "{{ "https" if ENABLE_HTTPS else "http" }}://{{ MFE_HOST }}/account" {% elif app_name == "course-authoring" %} MFE_CONFIG["ENABLE_NEW_EDITOR_PAGES"] = True MFE_CONFIG["ENABLE_PROGRESS_GRAPH_SETTINGS"] = True diff --git a/tutormfe/patches/openedx-lms-production-settings b/tutormfe/patches/openedx-lms-production-settings index 0e62e3b7..cfe39607 100644 --- a/tutormfe/patches/openedx-lms-production-settings +++ b/tutormfe/patches/openedx-lms-production-settings @@ -30,6 +30,7 @@ AUTHN_MICROFRONTEND_DOMAIN = "{{ MFE_HOST }}/authn" MFE_CONFIG["DISABLE_ENTERPRISE_LOGIN"] = True {% elif app_name == "account" %} ACCOUNT_MICROFRONTEND_URL = "{% if ENABLE_HTTPS %}https://{% else %}http://{% endif %}{{ MFE_HOST }}/account" +MFE_CONFIG["ACCOUNT_SETTINGS_URL"]= "{{ "https" if ENABLE_HTTPS else "http" }}://{{ MFE_HOST }}/account" {% elif app_name == "course-authoring" %} MFE_CONFIG["ENABLE_NEW_EDITOR_PAGES"] = True MFE_CONFIG["ENABLE_PROGRESS_GRAPH_SETTINGS"] = True