Skip to content

Commit

Permalink
3scale: Fix capitalization of Connection: header value
Browse files Browse the repository at this point in the history
3scale sets this to "Upgrade", not "upgrade".
  • Loading branch information
martinpitt committed Sep 26, 2022
1 parent dc60123 commit d2711e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 3scale/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ http {
# proxy_set_header Connection $http_connection;
# .. but it doesn't: it always adds this header even for plain HTTP requests
# https://issues.redhat.com/browse/RHCLOUD-21326
proxy_set_header Connection "upgrade";
proxy_set_header Connection "Upgrade";

# Pass ETag header from Cockpit to clients.
# See: https://github.com/cockpit-project/cockpit/issues/5239
Expand Down

0 comments on commit d2711e1

Please sign in to comment.