mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
added note about max size of request body
parent
7fd3b652da
commit
4c4c873229
@ -36,3 +36,10 @@ location /trilium/ {
|
|||||||
proxy_cache_bypass $http_upgrade;
|
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;
|
||||||
|
```
|
Loading…
x
Reference in New Issue
Block a user