From 834635bbaa22bdb89a8a855a204c6f901b1a52c2 Mon Sep 17 00:00:00 2001 From: augustin64 Date: Thu, 21 Sep 2023 13:50:11 +0200 Subject: [PATCH] Fix invalid nginx config --- config/config.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/config.sh b/config/config.sh index fb2fe5c..1c316b1 100644 --- a/config/config.sh +++ b/config/config.sh @@ -35,9 +35,9 @@ server { location /novnc/websockify { proxy_pass http://127.0.0.1:6080/; proxy_http_version 1.1; - proxy_set_header Upgrade $http_upgrade; + proxy_set_header Upgrade \$http_upgrade; proxy_set_header Connection "Upgrade"; - proxy_set_header Host $host; + proxy_set_header Host \$host; } location / {