Update command to download docker nginx files to use $FUNKWHALE_VERSION variable properly

This commit is contained in:
Travis Briggs 2022-11-15 08:04:36 +00:00 committed by Georg Krause
parent ac16b85ddf
commit ea3f80033b
1 changed files with 3 additions and 3 deletions

View File

@ -221,8 +221,8 @@ On docker deployments, run the following commands:
export FUNKWHALE_VERSION="|version|" export FUNKWHALE_VERSION="|version|"
# download the needed files # download the needed files
curl -L -o /etc/nginx/funkwhale_proxy.conf "https://dev.funkwhale.audio/funkwhale/funkwhale/raw/|version|/deploy/funkwhale_proxy.conf" curl -L -o /etc/nginx/funkwhale_proxy.conf "https://dev.funkwhale.audio/funkwhale/funkwhale/raw/$FUNKWHALE_VERSION/deploy/funkwhale_proxy.conf"
curl -L -o /etc/nginx/sites-available/funkwhale.template "https://dev.funkwhale.audio/funkwhale/funkwhale/raw/|version|/deploy/docker.proxy.template" curl -L -o /etc/nginx/sites-available/funkwhale.template "https://dev.funkwhale.audio/funkwhale/funkwhale/raw/$FUNKWHALE_VERSION/deploy/docker.proxy.template"
.. code-block:: shell .. code-block:: shell