From 7da6216b15f5a65cf3e71e431b7551a62524a9c1 Mon Sep 17 00:00:00 2001 From: Linus Kendall Date: Tue, 11 Jan 2022 19:27:45 +0530 Subject: [PATCH] Use http/1.1 for both websockets and regular rpc With http/1.0 negotiation for websockets, the websocket negotiation will fail. --- doc/example-nginx-triton1.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/example-nginx-triton1.conf b/doc/example-nginx-triton1.conf index 1b7a90977..146e4bdd7 100644 --- a/doc/example-nginx-triton1.conf +++ b/doc/example-nginx-triton1.conf @@ -22,6 +22,7 @@ http { server { listen 7900; location / { + proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "Upgrade"; proxy_pass https://backend/YOUR_AUTH_TOKEN_HERE/;