diff --git a/Makefile b/Makefile index a92d0ba396..3877b19fe3 100644 --- a/Makefile +++ b/Makefile @@ -103,7 +103,7 @@ ci-test-bundle: ## Run basic tests on bundle yes "" | ./dist/tutor config save --interactive ./dist/tutor config save ./dist/tutor plugins list - ./dist/tutor plugins enable android discovery ecommerce forum license mfe minio notes webui xqueue + ./dist/tutor plugins enable android discovery forum license mfe minio notes webui xqueue ./dist/tutor plugins list ./dist/tutor license --help diff --git a/docs/install.rst b/docs/install.rst index df3c5337ae..71002ca585 100644 --- a/docs/install.rst +++ b/docs/install.rst @@ -66,7 +66,7 @@ To inspect the Tutor source code, install Tutor from `the Github repository `__ which will make it possible to access your Open edX platform by name in your browser. The precise procedure to create DNS records varies from one provider to the next and is beyond the scope of these docs. You should create a record of type A with a name equal to your LMS hostname (given by ``tutor config printvalue LMS_HOST``) and a value that indicates the IP address of your server. Applications other than the LMS, such as the studio, ecommerce, etc. typically reside in subdomains of the LMS. Thus, you should also create a CNAME record to point all subdomains of the LMS to the LMS_HOST. +When running a server in production, it is necessary to define `DNS records `__ which will make it possible to access your Open edX platform by name in your browser. The precise procedure to create DNS records varies from one provider to the next and is beyond the scope of these docs. You should create a record of type A with a name equal to your LMS hostname (given by ``tutor config printvalue LMS_HOST``) and a value that indicates the IP address of your server. Applications other than the LMS, such as the studio, credentials, etc. typically reside in subdomains of the LMS. Thus, you should also create a CNAME record to point all subdomains of the LMS to the LMS_HOST. For instance, to run an Open edX server at https://learn.mydomain.com on a server with IP address 1.1.1.1, you would need to configure the following DNS records:: diff --git a/docs/tutorials/proxy.rst b/docs/tutorials/proxy.rst index 61122667b2..94e961f0f7 100644 --- a/docs/tutorials/proxy.rst +++ b/docs/tutorials/proxy.rst @@ -20,7 +20,7 @@ With these changes, Tutor will no longer listen to ports 80 and 443 on the host. It is then your responsibility to configure the web proxy on the host. There are too many use cases and proxy vendors, so Tutor does not provide configuration files that will work for everyone. You should configure your web proxy to: -- Capture traffic for the following hostnames: LMS_HOST, PREVIEW_LMS_HOST, CMS_HOST, as well as any additional host exposed by your plugins (MFE_HOST, ECOMMERCE_HOST, etc.). See each plugin documentation for more information. +- Capture traffic for the following hostnames: LMS_HOST, PREVIEW_LMS_HOST, CMS_HOST, as well as any additional host exposed by your plugins (MFE_HOST, CREDENTIALS_HOST, etc.). See each plugin documentation for more information. - If SSL/TLS is enabled: - Perform SSL/TLS termination using your own certificates. - Forward http traffic to https. diff --git a/tutor/hooks/catalog.py b/tutor/hooks/catalog.py index d31163cb4c..a05ef0d8bd 100644 --- a/tutor/hooks/catalog.py +++ b/tutor/hooks/catalog.py @@ -221,7 +221,7 @@ def your_filter_callback(some_data): #: (lms, lms-worker, cms, cms-worker, lms-job, cms-job) at the #: /openedx/edx-platform location. Plugin developers may implement this filter to #: define custom behaviour when mounting folders that relate to their plugins. For - #: instance, the ecommerce plugin may process the ``/path/to/ecommerce`` value. + #: instance, the credentials plugin may process the ``/path/to/credentials`` value. #: #: To also bind-mount these folder at build time, implement also the #: :py:data:`IMAGES_BUILD_MOUNTS` filter. diff --git a/tutor/plugins/v0.py b/tutor/plugins/v0.py index b1cf0f76d5..e7e59382ed 100644 --- a/tutor/plugins/v0.py +++ b/tutor/plugins/v0.py @@ -282,7 +282,6 @@ class OfficialPlugin(BasePlugin): NAMES = [ "android", "discovery", - "ecommerce", "forum", "license", "mfe",