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 11# Changelog
22
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+
313## 1.19.5-5
414
515* 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 22 include /etc/nginx/mime.types;
33 include /etc/nginx/log.conf;
44
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;
1118
1219 # If we receive X-Forwarded-Proto, pass it through; otherwise, pass along the
1320 # scheme used to connect to this server
4956 proxy_set_header X-Request-ID $proxy_x_request_id;
5057 proxy_set_header X-Forwarded-Host $host;
5158
52- proxy_read_timeout 600s;
53-
5459 include /etc/nginx/app.conf;
5560
5661 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;
33worker_shutdown_timeout 630s;
44
55events {
You can’t perform that action at this time.
0 commit comments