File tree 2 files changed +7
-5
lines changed
2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 31
31
include mime.types;
32
32
server_tokens off;
33
33
34
- # timeouts are configured slightly higher than ditto-eclipse-ditto-gateway read-timeout of 60 seconds
35
- proxy_connect_timeout 70; # seconds, default: 60
36
- proxy_send_timeout 70; # seconds, default: 60
37
- proxy_read_timeout 70; # seconds, default: 60
34
+ proxy_connect_timeout {{ .Values.nginx.config.timeout }}; # seconds, default: 60
35
+ proxy_send_timeout {{ .Values.nginx.config.timeout }}; # seconds, default: 60
36
+ proxy_read_timeout {{ .Values.nginx.config.timeout }}; # seconds, default: 60
38
37
# will try another upstream if an error or timeout occurred during the connection
39
38
# or if the upstream returns 502 response
40
39
proxy_next_upstream error timeout http_502;
43
42
# will try for max. 20s to find another upstream to connect to
44
43
proxy_next_upstream_timeout 20;
45
44
46
- send_timeout 70 ; # seconds, default: 60
45
+ send_timeout {{ .Values.nginx.config.timeout }} ; # seconds, default: 60
47
46
48
47
client_header_buffer_size 8k; # allow longer URIs + headers (default: 1k)
49
48
large_client_header_buffers 4 16k;
Original file line number Diff line number Diff line change @@ -1679,6 +1679,9 @@ nginx:
1679
1679
workerProcesses : 4
1680
1680
# workerProcesses the 'events' 'worker_connections' option for nginx to use
1681
1681
workerConnections : 1024
1682
+ # the 'proxy_connect_timeout', 'proxy_send_timeout', 'proxy_read_timeout' and 'send_timeout' options for nginx
1683
+ # timeouts are configured slightly higher than ditto-eclipse-ditto-gateway read-timeout
1684
+ timeout : 70
1682
1685
1683
1686
# # ----------------------------------------------------------------------------
1684
1687
# # Ditto UI configuration
You can’t perform that action at this time.
0 commit comments