From dec49521556fc228c6e05b6199e9b07f619b38fb Mon Sep 17 00:00:00 2001 From: J Webb Date: Tue, 21 Jun 2022 12:40:53 +0000 Subject: [PATCH] Ensure peertube root directory is setup to be traversed by nginx (#5028) * Update production.md On Ubuntu 22.04, the dir `/var/www/peertube` is restricted to user peertube & group peertube. This causes issues with many of the subsequent sudo commands, and also results in white-screen on initial visit to the site due to JS files not being accessible. This PR loosens those requirements, but maybe would be better if nginx is just added to peertube group? This is my first time installing PeertTube, so I'll defer to someone with more knowledge of this framework to vet the approach here. * Set specific mode on peertube root directory * Minor fixup * Prefer ls instead of chmod to check directory Co-authored-by: Chocobozzz --- support/doc/production.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/support/doc/production.md b/support/doc/production.md index ea0a98395..34e19fc8c 100644 --- a/support/doc/production.md +++ b/support/doc/production.md @@ -25,6 +25,12 @@ Set its password: $ sudo passwd peertube ``` +Ensure the peertube root directory is traversable by nginx: + +```bash +$ ls -ld /var/www/peertube # Should be drwxr-xr-x +``` + **On FreeBSD** ```bash