diff options
Diffstat (limited to 'support')
-rw-r--r-- | support/doc/production.md | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/support/doc/production.md b/support/doc/production.md index 6d7744b1f..ea0a98395 100644 --- a/support/doc/production.md +++ b/support/doc/production.md | |||
@@ -339,6 +339,15 @@ $ cd /var/www/peertube && \ | |||
339 | sudo -u peertube ln -s versions/peertube-${VERSION} ./peertube-latest | 339 | sudo -u peertube ln -s versions/peertube-${VERSION} ./peertube-latest |
340 | ``` | 340 | ``` |
341 | 341 | ||
342 | ### Configuration | ||
343 | |||
344 | You can check for configuration changes, and report them in your `config/production.yaml` file: | ||
345 | |||
346 | ```bash | ||
347 | $ cd /var/www/peertube/versions | ||
348 | $ diff -u "$(ls --sort=t | head -2 | tail -1)/config/production.yaml.example" "$(ls --sort=t | head -1)/config/production.yaml.example" | ||
349 | ``` | ||
350 | |||
342 | ### nginx | 351 | ### nginx |
343 | 352 | ||
344 | Check changes in nginx configuration: | 353 | Check changes in nginx configuration: |