aboutsummaryrefslogtreecommitdiffhomepage
path: root/support/doc
diff options
context:
space:
mode:
Diffstat (limited to 'support/doc')
-rw-r--r--support/doc/production.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/support/doc/production.md b/support/doc/production.md
index 606f13c9b..e46d9d9e1 100644
--- a/support/doc/production.md
+++ b/support/doc/production.md
@@ -37,19 +37,19 @@ $ VERSION=$(curl -s https://api.github.com/repos/chocobozzz/peertube/releases/la
37 37
38Open the peertube directory, create a few required directories 38Open the peertube directory, create a few required directories
39``` 39```
40cd /var/www/peertube && sudo -u peertube mkdir config storage versions && cd versions 40$ cd /var/www/peertube && sudo -u peertube mkdir config storage versions && cd versions
41``` 41```
42 42
43Download the latest version of the Peertube client, unzip it and remove the zip 43Download the latest version of the Peertube client, unzip it and remove the zip
44``` 44```
45sudo -u peertube wget -q "https://github.com/Chocobozzz/PeerTube/releases/download/${VERSION}/peertube-${VERSION}.zip" && \ 45$ sudo -u peertube wget -q "https://github.com/Chocobozzz/PeerTube/releases/download/${VERSION}/peertube-${VERSION}.zip"
46sudo -u peertube unzip peertube-${VERSION}.zip && sudo -u peertube rm peertube-${VERSION}.zip 46$ sudo -u peertube unzip peertube-${VERSION}.zip && sudo -u peertube rm peertube-${VERSION}.zip
47``` 47```
48 48
49Install Peertube 49Install Peertube
50``` 50```
51cd ../ && sudo -u peertube ln -s versions/peertube-${VERSION} ./peertube-latest && \ 51$ cd ../ && sudo -u peertube ln -s versions/peertube-${VERSION} ./peertube-latest
52cd ./peertube-latest && sudo -u peertube yarn install --production --pure-lockfile 52$ cd ./peertube-latest && sudo -u peertube yarn install --production --pure-lockfile
53``` 53```
54 54
55### PeerTube configuration 55### PeerTube configuration