aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorThomas Citharel <tcit@tcit.fr>2018-01-25 08:13:19 +0100
committerChocobozzz <me@florianbigard.com>2018-01-25 08:13:19 +0100
commit15dbc134bd92b3b9953d676b6c6bda2d41e4945b (patch)
treec74154d1623165e5335676a18a5c5241c01298fd
parent2bb0f9d501845d049827a91138ceb28d729228ec (diff)
downloadPeerTube-15dbc134bd92b3b9953d676b6c6bda2d41e4945b.tar.gz
PeerTube-15dbc134bd92b3b9953d676b6c6bda2d41e4945b.tar.zst
PeerTube-15dbc134bd92b3b9953d676b6c6bda2d41e4945b.zip
typos (#246)
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
-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