mirror of
https://github.com/axeloz/filesharing.git
synced 2025-05-06 10:03:55 +02:00
added known permission errors
Added methods to resolve any permission denied or forbidden errors
This commit is contained in:
parent
f4a052469c
commit
2f7d2eb516
1 changed files with 7 additions and 1 deletions
|
@ -194,7 +194,13 @@ You can also **mix the two methods**.
|
||||||
|
|
||||||
## Known issues
|
## Known issues
|
||||||
|
|
||||||
If you are using Nginx, you might be required to do additional setup in order to increase the upload max size. Check the Nginx's documentation for `client_max_body_size`.
|
1.) If you are using Nginx, you might be required to do additional setup in order to increase the upload max size. Check the Nginx's documentation for `client_max_body_size`.
|
||||||
|
|
||||||
|
2.) Set Folder to apache2/nginx user `chown -R www-data:www-data /path/to/app/dir`
|
||||||
|
|
||||||
|
2.1) Set correct files permission `find /path/to/app/dir -type f -exec chmod 644 {} \;`
|
||||||
|
|
||||||
|
2.2) Set correct folder permission `find /path/to/app/dir -type d -exec chmod 755 {} \;`
|
||||||
|
|
||||||
## Development
|
## Development
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue