We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52bf350 commit 19dbb0aCopy full SHA for 19dbb0a
proxy_trailers.t
@@ -49,17 +49,18 @@ http {
49
50
http2 on;
51
52
+ proxy_http_version 1.1;
53
+ proxy_pass_trailers on;
54
+ proxy_set_header Connection "te, close";
55
+ proxy_set_header TE "trailers";
56
+
57
location / {
58
proxy_pass http://127.0.0.1:8081;
- proxy_http_version 1.1;
- proxy_pass_trailers on;
59
}
60
61
location /nobuffering {
62
proxy_pass http://127.0.0.1:8081/;
63
proxy_buffering off;
64
65
66
0 commit comments