diff --git a/scripts/helm/nginx-ingress/nginx-ingress/templates/configmap.yaml b/scripts/helm/nginx-ingress/nginx-ingress/templates/configmap.yaml index 47fb2043a..2e4e993c8 100644 --- a/scripts/helm/nginx-ingress/nginx-ingress/templates/configmap.yaml +++ b/scripts/helm/nginx-ingress/nginx-ingress/templates/configmap.yaml @@ -40,6 +40,9 @@ data: proxy_set_header X-Real-IP $real_ip; proxy_set_header Host $host; proxy_pass http://http-openreplay.app.svc.cluster.local; + proxy_read_timeout 300; + proxy_connect_timeout 120; + proxy_send_timeout 300; } location /grafana { set $target http://monitoring-grafana.monitoring.svc.cluster.local; @@ -132,7 +135,7 @@ data: # server_name _; # return 301 https://$host$request_uri; include /etc/nginx/conf.d/location.list; - client_max_body_size 50M; + client_max_body_size 10M; } server { listen 443 ssl; @@ -141,5 +144,5 @@ data: ssl_protocols TLSv1.2 TLSv1.3; ssl_ciphers "EECDH+ECDSA+AESGCM EECDH+aRSA+AESGCM EECDH+ECDSA+SHA384 EECDH+ECDSA+SHA256 EECDH+aRSA+SHA384 EECDH+aRSA+SHA256 EECDH+aRSA+RC4 EECDH EDH+aRSA HIGH !RC4 !aNULL !eNULL !LOW !3DES !MD5 !EXP !PSK !SRP !DSS"; include /etc/nginx/conf.d/location.list; - client_max_body_size 50M; + client_max_body_size 10M; }