master
StephanSainleger 4 years ago
parent
commit
873231e763
  1. 12
      nextcloud.md

12
nextcloud.md

@ -9,10 +9,14 @@ More details can be found in the server log.
```
To confirm it, look at the Nextcloud logs:
`compose logs nextcloud`
```
compose logs nextcloud
```
You should be able to see logs with errors like:
`Sabre/DAV/Exception/InsufficientStorage: Inssufficient space in [directory path], xxxxxx required, YYYYYYY availaible`
```
Sabre/DAV/Exception/InsufficientStorage: Inssufficient space in [directory path], xxxxxx required, YYYYYYY availaible
```
In that case, you must find where the memory issue is :
* it is global on the nextcloud database?
@ -29,6 +33,8 @@ If the memory issue is due to the trashbin folder full of old deleted file, you
You can also modify the trashbin configuration, in the `config.php` file, with the parameter `trashbin_retention_obligation'.
Example:
`'trashbin_retention_obligation' => 1,3`
```
'trashbin_retention_obligation' => 1,3,
```
Here the deleted files are kept at least 1 day, and up to 3 days, if the quota of deleted files is not exceeded (if exceeded, they will be deleted sooner).
Loading…
Cancel
Save