mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-11-15 17:47:13 +00:00
231bbbfe99
Nginx and Caddy performed duplicate tasks. It was decided to get rid of the nginx container, for simplification. This is a breaking change for plugin developers. Also, applications that collect nginx logs will have to be modified. See: - Corresponding TEP: https://discuss.overhang.io/t/tep-get-rid-of-the-nginx-container/2024 - the prior discussion: https://discuss.overhang.io/t/why-caddy-nginx/1952
12 lines
780 B
ReStructuredText
12 lines
780 B
ReStructuredText
Running multiple Open edX platforms on a single server
|
|
======================================================
|
|
|
|
With Tutor, it is easy to run multiple Open edX instances on a single server. To do so, the following configuration parameters must be different for all platforms:
|
|
|
|
- ``TUTOR_ROOT``: so that configuration, environment and data are not mixed up between platforms.
|
|
- ``LOCAL_PROJECT_NAME``: the various docker-compose projects cannot share the same name.
|
|
- ``CADDY_HTTP_PORT``: exposed ports cannot be shared by two different containers.
|
|
- ``LMS_HOST``, ``CMS_HOST``: the different platforms must be accessible from different domain (or subdomain) names.
|
|
|
|
In addition, a web proxy must be setup on the host, as described :ref:`in the corresponding tutorial <web_proxy>`.
|