Fix WebSockets configuration for Nginx (#44148) (#44211)

Co-authored-by: Gleb Goncharov <gongled@gongled.ru>
This commit is contained in:
Alexander Emelin
2022-01-20 10:14:45 +03:00
committed by GitHub
parent 6958de846c
commit 239ead8d8e

View File

@@ -93,7 +93,7 @@ http {
location / {
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header Connection $connection_upgrade;
proxy_set_header Host $http_host;
proxy_pass http://grafana;
}