From 54158d6cbc4d3f93b0c9d29d590bb65546291335 Mon Sep 17 00:00:00 2001 From: Nick Mowen Date: Mon, 31 Oct 2022 08:11:58 -0600 Subject: [PATCH] Try to get go2rtc proxy working --- docker/rootfs/usr/local/nginx/conf/nginx.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/rootfs/usr/local/nginx/conf/nginx.conf b/docker/rootfs/usr/local/nginx/conf/nginx.conf index 1a7cef9a7..b4b96edff 100644 --- a/docker/rootfs/usr/local/nginx/conf/nginx.conf +++ b/docker/rootfs/usr/local/nginx/conf/nginx.conf @@ -170,8 +170,8 @@ http { proxy_set_header Host $host; } - location ~ /go2rtc/(.*)$ { - proxy_pass http://go2rtc/$1; + location /go2rtc/ { + proxy_pass http://127.0.0.1:1984; proxy_http_version 1.1; proxy_set_header Host $host; }