Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-guides/TRaSH-Guides/blame/commit/75aaea7562860b1aff527c19b7d1e339cb6697f1/includes/hardlinks/permissions.md You should set ROOT_URL correctly, otherwise the web may not work correctly.
TRaSH-Guides/includes/hardlinks/permissions.md

9 lines
164 B

### Permissions
Recursively chown user and group and Recursively chmod to 775/664
```bash
sudo chown -R $USER:$USER /data
sudo chmod -R a=,a+rX,u+w,g+w /data
```