added note about max size of request body

zadam 2019-02-03 17:03:29 +01:00
parent 7fd3b652da
commit 4c4c873229

@ -35,4 +35,11 @@ location /trilium/ {
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
```
It's also advised to add following to `server {}` block to not limit size of payloads:
```
# set to 0 for unlimited. Default is 1M.
client_max_body_size 0;
```