1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/libreerp_ynh.git synced 2024-09-03 19:36:13 +02:00

Update nginx.conf.j2

Add max body variable for import db
This commit is contained in:
mdphoto 2020-07-17 17:01:23 +02:00 committed by GitHub
parent 522c6796da
commit 78587d56eb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,6 +4,11 @@ location / {
}
try_files $uri @{{ app }};
}
client_max_body_size 50M;
client_body_timeout 60m;
fastcgi_read_timeout 60m;
location @{{ app }} {
proxy_pass http://127.0.0.1:{{ port }};
proxy_next_upstream error timeout invalid_header http_500 http_502 http_503 http_504;