Include max body size in NGINX config example

This commit is contained in:
Raphaël Thériault 2019-11-25 10:36:32 -05:00 committed by GitHub
parent 26a759ad2c
commit 92eaf570cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -73,6 +73,10 @@ server {
location / {
proxy_pass http://localhost:8080;
location /f {
client_max_body_size 10M;
}
}
}
```