File tree Expand file tree Collapse file tree 3 files changed +25
-10
lines changed Expand file tree Collapse file tree 3 files changed +25
-10
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 1.19.5-6
4
+
5
+ * Set ` client_body_buffer_size ` to ` 128k ` .
6
+ * Set ` client_header_timeout ` to ` 605s ` .
7
+ * Set ` client_max_body_size ` to ` 500m ` .
8
+ * Set ` keepalive_timeout ` to ` 605s ` .
9
+ * Set ` proxy_connect_timeout ` to ` 60s ` (same as default).
10
+ * Set ` proxy_send_timeout ` to ` 60s ` (same as default).
11
+ * Set ` send_timeout ` to ` 60s ` (same as default).
12
+
3
13
## 1.19.5-5
4
14
5
15
* Add ` http_x_amzn_trace_id ` to json logging (for ` X-Amzn-Trace-Id ` header).
Original file line number Diff line number Diff line change 2
2
include /etc/nginx/mime.types;
3
3
include /etc/nginx/log.conf;
4
4
5
- server_tokens off;
6
- keepalive_timeout 20s;
7
- sendfile on;
8
- tcp_nopush on;
9
- client_max_body_size 400m;
10
- client_body_timeout 300s;
5
+ server_tokens off;
6
+ sendfile on;
7
+ tcp_nopush on;
8
+
9
+ client_max_body_size 500m;
10
+ client_body_buffer_size 128k;
11
+ client_body_timeout 300s;
12
+ client_header_timeout 605s;
13
+ keepalive_timeout 605s;
14
+ proxy_connect_timeout 60s;
15
+ proxy_read_timeout 600s;
16
+ proxy_send_timeout 60s;
17
+ send_timeout 60s;
11
18
12
19
# If we receive X-Forwarded-Proto, pass it through; otherwise, pass along the
13
20
# scheme used to connect to this server
49
56
proxy_set_header X-Request-ID $proxy_x_request_id;
50
57
proxy_set_header X-Forwarded-Host $host;
51
58
52
- proxy_read_timeout 600s;
53
-
54
59
include /etc/nginx/app.conf;
55
60
56
61
server {
Original file line number Diff line number Diff line change 1
- worker_processes auto;
2
- worker_rlimit_nofile 8192;
1
+ worker_processes auto;
2
+ worker_rlimit_nofile 8192;
3
3
worker_shutdown_timeout 630s;
4
4
5
5
events {
You can’t perform that action at this time.
0 commit comments