Added proxy_*_timeouts for /ingest

This commit is contained in:
Mehdi Osman 2021-09-28 20:32:14 +02:00 committed by GitHub
parent 3298230c3a
commit a8cd5f06e3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
}