Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add proper permissions commands to Step 2 #29

Open
wants to merge 2 commits into
base: v4
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions docs/install-from-scratch/files.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,15 @@ curl -Lo panel.tar.gz https://github.com/Jexactyl/Jexactyl/releases/download/v4.

# Extract the archive
tar -xzvf panel.tar.gz
```

### Set File Permissions
After downloading Jexactyl's files, we need to set the proper permissions so the webserver can access the files.

```bash
# Give certain folders higher permissions for access
chmod -R 755 storage/* bootstrap/cache/

# Give ownership of the panel's files to the www-data (webserver) user
chown -R www-data:www-data /var/www/jexactyl/*
```