This commit is contained in:
James Williams 2024-04-17 10:02:09 +00:00 committed by GitHub
commit f9e5f90e55
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 0 deletions

View File

@ -65,6 +65,12 @@ We will use rbenv to manage Ruby versions as it simplifies obtaining the correct
adduser --disabled-login mastodon
```
The mastodon user's home directory will contain the application, so we need to ensure that other users (such as the web server process) can traverse files in it:
```bash
chmod a+x /home/mastodon
```
We can then switch to the user:
```bash