]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - support/doc/production.md
Issue #168: youtube-like marking of comments (#297)
[github/Chocobozzz/PeerTube.git] / support / doc / production.md
CommitLineData
63bfad7e
C
1# Production guide
2
4df6a1b8
C
3 * [Installation](#installation)
4 * [Upgrade](#upgrade)
5
63bfad7e
C
6## Installation
7
1185c246
C
8**Please don't install PeerTube for production on a small device behind a low bandwidth connection because it could slow down the fediverse.**
9
63bfad7e
C
10### Dependencies
11
12Follow the steps of the [dependencies guide](dependencies.md).
13
14### PeerTube user
15
59c48d49 16Create a `peertube` user with `/var/www/peertube` home:
63bfad7e 17
afe81767 18```
59c48d49 19$ sudo useradd -m -d /var/www/peertube -s /bin/bash -p peertube peertube
e5203ffa
TC
20```
21
22Set its password:
23```
d2000ca6 24$ sudo passwd peertube
63bfad7e
C
25```
26
27### Database
28
e5203ffa 29Create the production database and a peertube user inside PostgreSQL:
63bfad7e 30
afe81767 31```
d2000ca6
C
32$ sudo -u postgres createuser -P peertube
33$ sudo -u postgres createdb -O peertube peertube_prod
63bfad7e
C
34```
35
d2000ca6 36### Prepare PeerTube directory
63bfad7e 37
e5203ffa
TC
38Fetch the latest tagged version of Peertube
39```
40$ VERSION=$(curl -s https://api.github.com/repos/chocobozzz/peertube/releases/latest | grep tag_name | cut -d '"' -f 4) && echo "Latest Peertube version is $VERSION"
41```
59c48d49 42
e5203ffa
TC
43Open the peertube directory, create a few required directories
44```
15dbc134 45$ cd /var/www/peertube && sudo -u peertube mkdir config storage versions && cd versions
e5203ffa 46```
59c48d49 47
e5203ffa 48Download the latest version of the Peertube client, unzip it and remove the zip
afe81767 49```
15dbc134
TC
50$ sudo -u peertube wget -q "https://github.com/Chocobozzz/PeerTube/releases/download/${VERSION}/peertube-${VERSION}.zip"
51$ sudo -u peertube unzip peertube-${VERSION}.zip && sudo -u peertube rm peertube-${VERSION}.zip
e5203ffa 52```
59c48d49 53
e5203ffa
TC
54Install Peertube
55```
15dbc134 56$ cd ../ && sudo -u peertube ln -s versions/peertube-${VERSION} ./peertube-latest
09c93c20 57$ cd ./peertube-latest && sudo -H -u peertube yarn install --production --pure-lockfile
63bfad7e
C
58```
59
60### PeerTube configuration
61
62Copy example configuration:
63
afe81767 64```
59c48d49 65$ cd /var/www/peertube && sudo -u peertube cp peertube-latest/config/production.yaml.example config/production.yaml
63bfad7e
C
66```
67
68Then edit the `config/production.yaml` file according to your webserver
d2000ca6 69configuration.
63bfad7e
C
70
71### Webserver
72
e883399f
RK
73We only provide official configuration files for Nginx.
74
63bfad7e
C
75Copy the nginx configuration template:
76
afe81767 77```
59c48d49 78$ sudo cp /var/www/peertube/peertube-latest/support/nginx/peertube /etc/nginx/sites-available/peertube
63bfad7e
C
79```
80
5668bf2e
C
81Then modify the webserver configuration file. Please pay attention to the `alias` keys of the static locations.
82It should correspond to the paths of your storage directories (set in the configuration file inside the `storage` key).
63bfad7e 83
afe81767 84```
63bfad7e
C
85$ sudo vim /etc/nginx/sites-available/peertube
86```
87
0b495712
C
88Activate the configuration file:
89
90```
91$ sudo ln -s /etc/nginx/sites-available/peertube /etc/nginx/sites-enabled/peertube
92```
93
94To generate the certificate for your domain as required to make https work you can use [Let's Encrypt](https://letsencrypt.org/):
95
96```
97$ sudo systemctl stop nginx
98$ sudo certbot --authenticator standalone --installer nginx --post-hook "systemctl start nginx"
e883399f
RK
99```
100
101Remember your certificate will expire in 90 days, and thus needs renewal.
63bfad7e 102
0b495712 103Now you have the certificates you can reload nginx:
63bfad7e 104
afe81767 105```
63bfad7e
C
106$ sudo systemctl reload nginx
107```
108
109### Systemd
110
e883399f 111Copy the SystemD configuration template:
63bfad7e 112
afe81767 113```
59c48d49 114$ sudo cp /var/www/peertube/peertube-latest/support/systemd/peertube.service /etc/systemd/system/
63bfad7e
C
115```
116
117Update the service file:
118
afe81767 119```
d2000ca6 120$ sudo vim /etc/systemd/system/peertube.service
63bfad7e
C
121```
122
63bfad7e
C
123
124Tell systemd to reload its config:
125
afe81767 126```
d2000ca6 127$ sudo systemctl daemon-reload
63bfad7e
C
128```
129
6b2ef589
C
130If you want to start PeerTube on boot:
131
132```
9625507f 133$ sudo systemctl enable peertube
6b2ef589
C
134```
135
63bfad7e
C
136### Run
137
afe81767 138```
d2000ca6
C
139$ sudo systemctl start peertube
140$ sudo journalctl -feu peertube
63bfad7e
C
141```
142
143### Administrator
144
145The administrator password is automatically generated and can be found in the
146logs. You can set another password with:
147
afe81767 148```
59c48d49 149$ cd /var/www/peertube/peertube-latest && NODE_CONFIG_DIR=/var/www/peertube/config NODE_ENV=production npm run reset-password -- -u root
63bfad7e
C
150```
151
152## Upgrade
153
a8b5ce95 154#### Auto (minor versions only)
1007a018
SL
155
156```
a8b5ce95
C
157$ cd /var/www/peertube/peertube-latest/scripts && sudo -u peertube ./upgrade.sh
158$ diff /var/www/peertube/versions/peertube-${VERSION}/config/production.yaml.example /var/www/peertube/config/production.yaml
159$ sudo systemctl restart peertube && sudo journalctl -fu peertube
1007a018
SL
160```
161
a8b5ce95
C
162#### Manually
163
ce487e1e 164Make a SQL backup
c7a9f34f
C
165
166```
167$ SQL_BACKUP_PATH="backup/sql-peertube_prod-$(date -Im).bak" && \
59c48d49 168 cd /var/www/peertube && sudo -u peertube mkdir -p backup && \
c7a9f34f
C
169 sudo pg_dump -U peertube -W -h localhost -F c peertube_prod -f "$SQL_BACKUP_PATH"
170```
171
ce487e1e 172Fetch the latest tagged version of Peertube:
23e27dd5
C
173
174```
ce487e1e 175$ VERSION=$(curl -s https://api.github.com/repos/chocobozzz/peertube/releases/latest | grep tag_name | cut -d '"' -f 4) && echo "Latest Peertube version is $VERSION"
23e27dd5
C
176```
177
ce487e1e 178Download the new version and unzip it:
c7a9f34f 179
afe81767 180```
ce487e1e 181$ cd /var/www/peertube/versions && \
fd206f0b 182 sudo -u peertube wget -q "https://github.com/Chocobozzz/PeerTube/releases/download/${VERSION}/peertube-${VERSION}.zip" && \
ce487e1e
C
183 sudo -u peertube unzip -o peertube-${VERSION}.zip && \
184 sudo -u peertube rm peertube-${VERSION}.zip
185```
186
4805cff1 187Install node dependencies:
ce487e1e
C
188
189```
4805cff1
C
190$ cd /var/www/peertube/versions/peertube-${VERSION} && \
191 sudo -u peertube yarn install --production --pure-lockfile
ce487e1e
C
192```
193
4805cff1 194Copy new configuration defaults values and update your configuration file:
ce487e1e 195
63bfad7e 196```
4805cff1 197$ sudo -u peertube cp /var/www/peertube/versions/peertube-${VERSION}/config/default.yaml /var/www/peertube/config/default.yaml
a8b5ce95 198$ diff /var/www/peertube/versions/peertube-${VERSION}/config/production.yaml.example /var/www/peertube/config/production.yaml
ce487e1e
C
199```
200
4805cff1 201Change the link to point to the latest version:
ce487e1e
C
202
203```
4805cff1
C
204$ cd /var/www/peertube && \
205 sudo rm ./peertube-latest && \
206 sudo -u peertube ln -s versions/peertube-${VERSION} ./peertube-latest
ce487e1e
C
207```
208
4805cff1 209
ce487e1e
C
210Restart PeerTube:
211```
212$ sudo systemctl restart peertube
213```
214
215### Things went wrong?
c7a9f34f 216
ce487e1e 217Change `peertube-latest` destination to the previous version and restore your SQL backup:
c7a9f34f
C
218
219```
220$ OLD_VERSION="v0.42.42" && SQL_BACKUP_PATH="backup/sql-peertube_prod-2018-01-19T10:18+01:00.bak" && \
59c48d49 221 cd /var/www/peertube && rm ./peertube-latest && \
c7a9f34f 222 sudo -u peertube ln -s "versions/peertube-$OLD_VERSION" peertube-latest && \
f529f983 223 pg_restore -U peertube -W -h localhost -c -d peertube_prod "$SQL_BACKUP_PATH"
c7a9f34f
C
224 sudo systemctl restart peertube
225```