Allow longer timeout

This commit is contained in:
Alexandre
2021-05-13 21:54:54 +02:00
committed by GitHub
parent 5a1f17c80a
commit 725230914b

View File

@@ -8,7 +8,9 @@ server {
location / {
add_header Access-Control-Allow-Origin *;
proxy_read_timeout 30;
proxy_connect_timeout 30m;
proxy_send_timeout 30m;
proxy_read_timeout 30m;
proxy_pass http://backend/joal/ui/;
}
}