Mention client_max_body_size in nginx proxy settings
This commit is contained in:
parent
14c27600d8
commit
28fd0e91ee
3 changed files with 23 additions and 1 deletions
|
|
@ -181,10 +181,15 @@ server {
|
|||
|
||||
location /api/ {
|
||||
proxy_pass http://api:3456;
|
||||
client_max_body_size 20M;
|
||||
}
|
||||
}
|
||||
{{< /highlight >}}
|
||||
|
||||
<div class="notification is-warning">
|
||||
<b>NOTE:</b> If you change the max upload size in Vikunja's settings, you'll need to also change the <code>client_max_body_size</code> in the nginx proxy config.
|
||||
</div>
|
||||
|
||||
`docker-compose.yml` config:
|
||||
|
||||
{{< highlight yaml >}}
|
||||
|
|
|
|||
Reference in a new issue