Added proxy_*_timeouts for /ingest
This commit is contained in:
parent
3298230c3a
commit
a8cd5f06e3
1 changed files with 5 additions and 2 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue