Fixed #520: wrong env file URL and display bugs in deployment documentation
This commit is contained in:
parent
07830506a8
commit
1a637fca85
|
@ -0,0 +1 @@
|
||||||
|
Fixed wrong env file URL and display bugs in deployment documentation (#520)
|
|
@ -207,7 +207,7 @@ Download the sample environment file:
|
||||||
|
|
||||||
.. parsed-literal::
|
.. parsed-literal::
|
||||||
|
|
||||||
curl -L -o config/.env "https://code.eliotberriot.com/funkwhale/funkwhale/raw/|version|/deploy/env.prod.sample"
|
curl -L -o config/.env "https://code.eliotberriot.com/funkwhale/funkwhale/raw/develop/deploy/env.prod.sample"
|
||||||
|
|
||||||
.. note::
|
.. note::
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@ Create your env file:
|
||||||
.. parsed-literal::
|
.. parsed-literal::
|
||||||
|
|
||||||
export FUNKWHALE_VERSION="|version|"
|
export FUNKWHALE_VERSION="|version|"
|
||||||
curl -L -o .env "https://code.eliotberriot.com/funkwhale/funkwhale/raw/|version|/deploy/env.prod.sample"
|
curl -L -o .env "https://code.eliotberriot.com/funkwhale/funkwhale/raw/develop/deploy/env.prod.sample"
|
||||||
sed -i "s/FUNKWHALE_VERSION=latest/FUNKWHALE_VERSION=$FUNKWHALE_VERSION/" .env
|
sed -i "s/FUNKWHALE_VERSION=latest/FUNKWHALE_VERSION=$FUNKWHALE_VERSION/" .env
|
||||||
|
|
||||||
Ensure to edit it to match your needs (this file is heavily commented)
|
Ensure to edit it to match your needs (this file is heavily commented)
|
||||||
|
|
|
@ -120,7 +120,7 @@ match the application configuration and make upgrade/maintenance easier.
|
||||||
|
|
||||||
On docker deployments, run the following commands:
|
On docker deployments, run the following commands:
|
||||||
|
|
||||||
.. parsed-literal::
|
.. code:: shell
|
||||||
|
|
||||||
# download the needed files
|
# download the needed files
|
||||||
curl -L -o /etc/nginx/funkwhale_proxy.conf "https://code.eliotberriot.com/funkwhale/funkwhale/raw/develop/deploy/funkwhale_proxy.conf"
|
curl -L -o /etc/nginx/funkwhale_proxy.conf "https://code.eliotberriot.com/funkwhale/funkwhale/raw/develop/deploy/funkwhale_proxy.conf"
|
||||||
|
@ -134,7 +134,7 @@ On docker deployments, run the following commands:
|
||||||
|
|
||||||
On non-docker deployments, run the following commands:
|
On non-docker deployments, run the following commands:
|
||||||
|
|
||||||
.. parsed-literal::
|
.. code:: shell
|
||||||
|
|
||||||
# download the needed files
|
# download the needed files
|
||||||
curl -L -o /etc/nginx/funkwhale_proxy.conf "https://code.eliotberriot.com/funkwhale/funkwhale/raw/develop/deploy/funkwhale_proxy.conf"
|
curl -L -o /etc/nginx/funkwhale_proxy.conf "https://code.eliotberriot.com/funkwhale/funkwhale/raw/develop/deploy/funkwhale_proxy.conf"
|
||||||
|
|
Loading…
Reference in New Issue