]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - support/doc/production.md
Bumped to version v5.2.1
[github/Chocobozzz/PeerTube.git] / support / doc / production.md
... / ...
CommitLineData
1# Production guide
2
3 * [Installation](#installation)
4 * [Upgrade](#upgrade)
5
6## Installation
7
8Please don't install PeerTube for production on a device behind a low bandwidth connection (example: your ADSL link).
9If you want information about the appropriate hardware to run PeerTube, please see the [FAQ](https://joinpeertube.org/en_US/faq#should-i-have-a-big-server-to-run-peertube).
10
11### :hammer: Dependencies
12
13Follow the steps of the [dependencies guide](/support/doc/dependencies.md).
14
15### :construction_worker: PeerTube user
16
17Create a `peertube` user with `/var/www/peertube` home:
18
19```bash
20sudo useradd -m -d /var/www/peertube -s /bin/bash -p peertube peertube
21```
22
23Set its password:
24```bash
25sudo passwd peertube
26```
27
28Ensure the peertube root directory is traversable by nginx:
29
30```bash
31ls -ld /var/www/peertube # Should be drwxr-xr-x
32```
33
34**On FreeBSD**
35
36```bash
37sudo pw useradd -n peertube -d /var/www/peertube -s /usr/local/bin/bash -m
38sudo passwd peertube
39```
40or use `adduser` to create it interactively.
41
42### :card_file_box: Database
43
44Create the production database and a peertube user inside PostgreSQL:
45
46```bash
47cd /var/www/peertube
48sudo -u postgres createuser -P peertube
49```
50
51Here you should enter a password for PostgreSQL `peertube` user, that should be copied in `production.yaml` file.
52Don't just hit enter else it will be empty.
53
54```bash
55sudo -u postgres createdb -O peertube -E UTF8 -T template0 peertube_prod
56```
57
58Then enable extensions PeerTube needs:
59
60```bash
61sudo -u postgres psql -c "CREATE EXTENSION pg_trgm;" peertube_prod
62sudo -u postgres psql -c "CREATE EXTENSION unaccent;" peertube_prod
63```
64
65### :page_facing_up: Prepare PeerTube directory
66
67Fetch the latest tagged version of Peertube:
68
69```bash
70VERSION=$(curl -s https://api.github.com/repos/chocobozzz/peertube/releases/latest | grep tag_name | cut -d '"' -f 4) && echo "Latest Peertube version is $VERSION"
71```
72
73
74Open the peertube directory, create a few required directories:
75
76```bash
77cd /var/www/peertube
78sudo -u peertube mkdir config storage versions
79sudo -u peertube chmod 750 config/
80```
81
82
83Download the latest version of the Peertube client, unzip it and remove the zip:
84
85```bash
86cd /var/www/peertube/versions
87# Releases are also available on https://builds.joinpeertube.org/release
88sudo -u peertube wget -q "https://github.com/Chocobozzz/PeerTube/releases/download/${VERSION}/peertube-${VERSION}.zip"
89sudo -u peertube unzip -q peertube-${VERSION}.zip && sudo -u peertube rm peertube-${VERSION}.zip
90```
91
92
93Install Peertube:
94
95```bash
96cd /var/www/peertube
97sudo -u peertube ln -s versions/peertube-${VERSION} ./peertube-latest
98cd ./peertube-latest && sudo -H -u peertube yarn install --production --pure-lockfile
99```
100
101### :wrench: PeerTube configuration
102
103Copy the default configuration file that contains the default configuration provided by PeerTube.
104You **must not** update this file.
105
106```bash
107cd /var/www/peertube
108sudo -u peertube cp peertube-latest/config/default.yaml config/default.yaml
109```
110
111Now copy the production example configuration:
112
113```bash
114cd /var/www/peertube
115sudo -u peertube cp peertube-latest/config/production.yaml.example config/production.yaml
116```
117
118Then edit the `config/production.yaml` file according to your webserver and database configuration. In particular:
119 * `webserver`: Reverse proxy public information
120 * `secrets`: Secret strings you must generate manually (PeerTube version >= 5.0)
121 * `database`: PostgreSQL settings
122 * `redis`: Redis settings
123 * `smtp`: If you want to use emails
124 * `admin.email`: To correctly fill `root` user email
125
126Keys defined in `config/production.yaml` will override keys defined in `config/default.yaml`.
127
128**PeerTube does not support webserver host change**. Even though [PeerTube CLI can help you to switch hostname](https://docs.joinpeertube.org/maintain/tools#update-host-js) there's no official support for that since it is a risky operation that might result in unforeseen errors.
129
130### :truck: Webserver
131
132We only provide official configuration files for Nginx.
133
134Copy the nginx configuration template:
135
136```bash
137sudo cp /var/www/peertube/peertube-latest/support/nginx/peertube /etc/nginx/sites-available/peertube
138```
139
140Then set the domain for the webserver configuration file.
141Replace `[peertube-domain]` with the domain for the peertube server.
142
143```bash
144sudo sed -i 's/${WEBSERVER_HOST}/[peertube-domain]/g' /etc/nginx/sites-available/peertube
145sudo sed -i 's/${PEERTUBE_HOST}/127.0.0.1:9000/g' /etc/nginx/sites-available/peertube
146```
147
148Then modify the webserver configuration file. Please pay attention to the `alias` keys of the static locations.
149It should correspond to the paths of your storage directories (set in the configuration file inside the `storage` key).
150
151```bash
152sudo vim /etc/nginx/sites-available/peertube
153```
154
155Activate the configuration file:
156
157```bash
158sudo ln -s /etc/nginx/sites-available/peertube /etc/nginx/sites-enabled/peertube
159```
160
161To generate the certificate for your domain as required to make https work you can use [Let's Encrypt](https://letsencrypt.org/):
162
163```bash
164sudo systemctl stop nginx
165sudo certbot certonly --standalone --post-hook "systemctl restart nginx"
166sudo systemctl reload nginx
167```
168
169Certbot should have installed a cron to automatically renew your certificate.
170Since our nginx template supports webroot renewal, we suggest you to update the renewal config file to use the `webroot` authenticator:
171
172```bash
173# Replace authenticator = standalone by authenticator = webroot
174# Add webroot_path = /var/www/certbot
175sudo vim /etc/letsencrypt/renewal/your-domain.com.conf
176```
177
178If you plan to have many concurrent viewers on your PeerTube instance, consider increasing `worker_connections` value: https://nginx.org/en/docs/ngx_core_module.html#worker_connections.
179
180<details>
181<summary><strong>If using FreeBSD</strong></summary>
182
183On FreeBSD you can use [Dehydrated](https://dehydrated.io/) `security/dehydrated` for [Let's Encrypt](https://letsencrypt.org/)
184
185```bash
186sudo pkg install dehydrated
187```
188</details>
189
190### :alembic: Linux TCP/IP Tuning
191
192```bash
193sudo cp /var/www/peertube/peertube-latest/support/sysctl.d/30-peertube-tcp.conf /etc/sysctl.d/
194sudo sysctl -p /etc/sysctl.d/30-peertube-tcp.conf
195```
196
197Your distro may enable this by default, but at least Debian 9 does not, and the default FIFO
198scheduler is quite prone to "Buffer Bloat" and extreme latency when dealing with slower client
199links as we often encounter in a video server.
200
201### :bricks: systemd
202
203If your OS uses systemd, copy the configuration template:
204
205```bash
206sudo cp /var/www/peertube/peertube-latest/support/systemd/peertube.service /etc/systemd/system/
207```
208
209Check the service file (PeerTube paths and security directives):
210
211```bash
212sudo vim /etc/systemd/system/peertube.service
213```
214
215
216Tell systemd to reload its config:
217
218```bash
219sudo systemctl daemon-reload
220```
221
222If you want to start PeerTube on boot:
223
224```bash
225sudo systemctl enable peertube
226```
227
228Run:
229
230```bash
231sudo systemctl start peertube
232sudo journalctl -feu peertube
233```
234
235<details>
236<summary><strong>If using FreeBSD</strong></summary>
237
238On FreeBSD, copy the startup script and update rc.conf:
239
240```bash
241sudo install -m 0555 /var/www/peertube/peertube-latest/support/freebsd/peertube /usr/local/etc/rc.d/
242sudo sysrc peertube_enable="YES"
243```
244
245Run:
246
247```bash
248sudo service peertube start
249```
250</details>
251
252<details>
253<summary><strong>If using OpenRC</strong></summary>
254
255If your OS uses OpenRC, copy the service script:
256
257```bash
258sudo cp /var/www/peertube/peertube-latest/support/init.d/peertube /etc/init.d/
259```
260
261If you want to start PeerTube on boot:
262
263```bash
264sudo rc-update add peertube default
265```
266
267Run and print last logs:
268
269```bash
270sudo /etc/init.d/peertube start
271tail -f /var/log/peertube/peertube.log
272```
273</details>
274
275### :technologist: Administrator
276
277The administrator username is `root` and the password is automatically generated. It can be found in PeerTube
278logs (path defined in `production.yaml`). You can also set another password with:
279
280```bash
281cd /var/www/peertube/peertube-latest && NODE_CONFIG_DIR=/var/www/peertube/config NODE_ENV=production npm run reset-password -- -u root
282```
283
284Alternatively you can set the environment variable `PT_INITIAL_ROOT_PASSWORD`,
285to your own administrator password, although it must be 6 characters or more.
286
287### :tada: What now?
288
289Now your instance is up you can:
290
291 * Add your instance to the public PeerTube instances index if you want to: https://instances.joinpeertube.org/
292 * Check [available CLI tools](/support/doc/tools.md)
293
294## Upgrade
295
296### PeerTube instance
297
298**Check the changelog (in particular the *IMPORTANT NOTES* section):** https://github.com/Chocobozzz/PeerTube/blob/develop/CHANGELOG.md
299
300Run the upgrade script (the password it asks is PeerTube's database user password):
301
302```bash
303cd /var/www/peertube/peertube-latest/scripts && sudo -H -u peertube ./upgrade.sh
304sudo systemctl restart peertube # Or use your OS command to restart PeerTube if you don't use systemd
305```
306
307<details>
308<summary><strong>Prefer manual upgrade?</strong></summary>
309
310Make a SQL backup
311
312```bash
313SQL_BACKUP_PATH="backup/sql-peertube_prod-$(date -Im).bak" && \
314 cd /var/www/peertube && sudo -u peertube mkdir -p backup && \
315 sudo -u postgres pg_dump -F c peertube_prod | sudo -u peertube tee "$SQL_BACKUP_PATH" >/dev/null
316```
317
318Fetch the latest tagged version of Peertube:
319
320```bash
321VERSION=$(curl -s https://api.github.com/repos/chocobozzz/peertube/releases/latest | grep tag_name | cut -d '"' -f 4) && echo "Latest Peertube version is $VERSION"
322```
323
324Download the new version and unzip it:
325
326```bash
327cd /var/www/peertube/versions && \
328 sudo -u peertube wget -q "https://github.com/Chocobozzz/PeerTube/releases/download/${VERSION}/peertube-${VERSION}.zip" && \
329 sudo -u peertube unzip -o peertube-${VERSION}.zip && \
330 sudo -u peertube rm peertube-${VERSION}.zip
331```
332
333Install node dependencies:
334
335```bash
336cd /var/www/peertube/versions/peertube-${VERSION} && \
337 sudo -H -u peertube yarn install --production --pure-lockfile
338```
339
340Copy new configuration defaults values and update your configuration file:
341
342```bash
343sudo -u peertube cp /var/www/peertube/versions/peertube-${VERSION}/config/default.yaml /var/www/peertube/config/default.yaml
344diff -u /var/www/peertube/versions/peertube-${VERSION}/config/production.yaml.example /var/www/peertube/config/production.yaml
345```
346
347Change the link to point to the latest version:
348
349```bash
350cd /var/www/peertube && \
351 sudo unlink ./peertube-latest && \
352 sudo -u peertube ln -s versions/peertube-${VERSION} ./peertube-latest
353```
354</details>
355
356### Update PeerTube configuration
357
358Check for configuration changes, and report them in your `config/production.yaml` file:
359
360```bash
361cd /var/www/peertube/versions
362diff -u "$(ls --sort=t | head -2 | tail -1)/config/production.yaml.example" "$(ls --sort=t | head -1)/config/production.yaml.example"
363```
364
365### Update nginx configuration
366
367Check changes in nginx configuration:
368
369```bash
370cd /var/www/peertube/versions
371diff -u "$(ls --sort=t | head -2 | tail -1)/support/nginx/peertube" "$(ls --sort=t | head -1)/support/nginx/peertube"
372```
373
374### Update systemd service
375
376Check changes in systemd configuration:
377
378```bash
379cd /var/www/peertube/versions
380diff -u "$(ls --sort=t | head -2 | tail -1)/support/systemd/peertube.service" "$(ls --sort=t | head -1)/support/systemd/peertube.service"
381```
382
383### Restart PeerTube
384
385If you changed your nginx configuration:
386
387```bash
388sudo systemctl reload nginx
389```
390
391If you changed your systemd configuration:
392
393```bash
394sudo systemctl daemon-reload
395```
396
397Restart PeerTube and check the logs:
398
399```bash
400sudo systemctl restart peertube && sudo journalctl -fu peertube
401```
402
403### Things went wrong?
404
405Change `peertube-latest` destination to the previous version and restore your SQL backup:
406
407```bash
408OLD_VERSION="v0.42.42" && SQL_BACKUP_PATH="backup/sql-peertube_prod-2018-01-19T10:18+01:00.bak" && \
409 cd /var/www/peertube && sudo -u peertube unlink ./peertube-latest && \
410 sudo -u peertube ln -s "versions/peertube-$OLD_VERSION" peertube-latest && \
411 sudo -u postgres pg_restore -c -C -d postgres "$SQL_BACKUP_PATH" && \
412 sudo systemctl restart peertube
413```