Get go2rtc webui working

This commit is contained in:
Nick Mowen 2022-10-31 07:29:02 -06:00
parent aa51fac292
commit 9ac69feab7

View File

@ -170,9 +170,11 @@ http {
proxy_set_header Host $host; proxy_set_header Host $host;
} }
location /go2rtc { location /go2rtc/ {
proxy_pass http://go2rtc/; proxy_pass http://go2rtc/;
proxy_http_version 1.1; proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header Host $host; proxy_set_header Host $host;
} }