File tree 1 file changed +12
-1
lines changed
1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,9 @@ server {
20
20
proxy_buffering off;
21
21
proxy_cache off;
22
22
proxy_http_version 1.1;
23
- proxy_set_header Connection '';
23
+
24
+ # Update connection header handling
25
+ proxy_set_header Connection ''; # Keep this empty for HTTP/1.1 chunked transfer
24
26
proxy_set_header X-Real-IP $remote_addr;
25
27
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
26
28
proxy_set_header Host $host;
@@ -38,6 +40,12 @@ server {
38
40
# Keep connection alive
39
41
keepalive_timeout 300s;
40
42
keepalive_requests 1000;
43
+
44
+ # Add these new settings
45
+ proxy_set_header Upgrade $http_upgrade;
46
+ proxy_set_header Connection "upgrade";
47
+ proxy_read_timeout 86400s; # 24 hours - prevent timeout during long streams
48
+ client_max_body_size 10M; # Increase if needed
41
49
}
42
50
43
51
# Return 444 for everything else (no response, just close connection)
@@ -52,6 +60,9 @@ server {
52
60
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
53
61
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
54
62
63
+ # Add this at the server level (outside location blocks)
64
+ client_header_timeout 300s;
65
+ client_body_timeout 300s;
55
66
}
56
67
server {
57
68
if ($host = api.gitdiagram.com) {
You can’t perform that action at this time.
0 commit comments