From b8729d44785d11fe2358aa920c74159cd4c0df3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Behmo?= Date: Mon, 28 Jun 2021 18:54:46 +0200 Subject: [PATCH] fix: don't refer to obsolete proxy config in docs nginx/openedx.conf was a configuration file provided to configure proxies on the host. This file no longer ships with Tutor since v11.0.0. See: https://discuss.overhang.io/t/local-deployment-webproxy/1688 --- docs/local.rst | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/docs/local.rst b/docs/local.rst index 5ff0091..5e305f4 100644 --- a/docs/local.rst +++ b/docs/local.rst @@ -203,22 +203,6 @@ With Tutor, it is easy to run multiple Open edX instances on a single server. To In addition, a web proxy must be setup on the host, as described :ref:`above `. -As an example, here is how to launch two different platforms, with nginx running as a web proxy:: - - # platform 1 - export TUTOR_ROOT=~/openedx/site1 - tutor config save --interactive --set RUN_CADDY=false --set LOCAL_PROJECT_NAME=tutor_site1 --set NGINX_HTTP_PORT=81 - tutor local quickstart - sudo ln -s "$(tutor config printroot)/env/local/proxy/nginx/openedx.conf" /etc/nginx/sites-enabled/site1.conf - - # platform 2 - export TUTOR_ROOT=~/openedx/site2 - tutor config save --interactive --set RUN_CADDY=false --set LOCAL_PROJECT_NAME=tutor_site2 --set NGINX_HTTP_PORT=82 - tutor local quickstart - sudo ln -s "$(tutor config printroot)/env/local/proxy/nginx/openedx.conf" /etc/nginx/sites-enabled/site2.conf - -You should then have two different platforms, completely isolated from one another, running on the same server. - Loading different production settings for ``edx-platform`` ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~