This commit is contained in:
James Williams 2024-05-21 12:02:52 +00:00 committed by GitHub
commit f3f2090d2e
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