diff options
Diffstat (limited to 'support')
-rw-r--r-- | support/doc/production.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/support/doc/production.md b/support/doc/production.md index 3c75b6cab..6d7744b1f 100644 --- a/support/doc/production.md +++ b/support/doc/production.md | |||
@@ -328,7 +328,7 @@ Copy new configuration defaults values and update your configuration file: | |||
328 | 328 | ||
329 | ```bash | 329 | ```bash |
330 | $ sudo -u peertube cp /var/www/peertube/versions/peertube-${VERSION}/config/default.yaml /var/www/peertube/config/default.yaml | 330 | $ sudo -u peertube cp /var/www/peertube/versions/peertube-${VERSION}/config/default.yaml /var/www/peertube/config/default.yaml |
331 | $ diff /var/www/peertube/versions/peertube-${VERSION}/config/production.yaml.example /var/www/peertube/config/production.yaml | 331 | $ diff -u /var/www/peertube/versions/peertube-${VERSION}/config/production.yaml.example /var/www/peertube/config/production.yaml |
332 | ``` | 332 | ``` |
333 | 333 | ||
334 | Change the link to point to the latest version: | 334 | Change the link to point to the latest version: |
@@ -345,7 +345,7 @@ Check changes in nginx configuration: | |||
345 | 345 | ||
346 | ```bash | 346 | ```bash |
347 | $ cd /var/www/peertube/versions | 347 | $ cd /var/www/peertube/versions |
348 | $ diff "$(ls --sort=t | head -2 | tail -1)/support/nginx/peertube" "$(ls --sort=t | head -1)/support/nginx/peertube" | 348 | $ diff -u "$(ls --sort=t | head -2 | tail -1)/support/nginx/peertube" "$(ls --sort=t | head -1)/support/nginx/peertube" |
349 | ``` | 349 | ``` |
350 | 350 | ||
351 | ### systemd | 351 | ### systemd |
@@ -354,7 +354,7 @@ Check changes in systemd configuration: | |||
354 | 354 | ||
355 | ```bash | 355 | ```bash |
356 | $ cd /var/www/peertube/versions | 356 | $ cd /var/www/peertube/versions |
357 | $ diff "$(ls --sort=t | head -2 | tail -1)/support/systemd/peertube.service" "$(ls --sort=t | head -1)/support/systemd/peertube.service" | 357 | $ diff -u "$(ls --sort=t | head -2 | tail -1)/support/systemd/peertube.service" "$(ls --sort=t | head -1)/support/systemd/peertube.service" |
358 | ``` | 358 | ``` |
359 | 359 | ||
360 | ### Restart PeerTube | 360 | ### Restart PeerTube |