Update ingress.conf

This commit is contained in:
Alexandre
2021-05-21 14:19:30 +02:00
committed by GitHub
parent c05ca02ec2
commit dee6246744

View File

@@ -6,12 +6,20 @@ server {
client_max_body_size 0;
location / {
location / {
add_header Access-Control-Allow-Origin *;
proxy_connect_timeout 30m;
proxy_send_timeout 30m;
proxy_read_timeout 30m;
proxy_pass http://backend/%%path%%/ui/;
proxy_pass http://backend/joal/ui/;
}
location /:8123/ {
add_header Access-Control-Allow-Origin *;
proxy_connect_timeout 30m;
proxy_send_timeout 30m;
proxy_read_timeout 30m;
proxy_pass http://backend/;
}
}