From b32826de4e19198b0b508a0a3612201f1b65ce43 Mon Sep 17 00:00:00 2001 From: Eli Mallon Date: Mon, 25 Sep 2023 16:24:25 -0700 Subject: [PATCH] scripts/livepeer-nginx: add broadcaster port forwards --- scripts/livepeer-nginx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/scripts/livepeer-nginx b/scripts/livepeer-nginx index e141502e1..a71d92c0c 100755 --- a/scripts/livepeer-nginx +++ b/scripts/livepeer-nginx @@ -104,6 +104,14 @@ http { proxy_pass http://127.0.0.1:9000; } + location /stream/ { + proxy_pass http://127.0.0.1:8935; + } + + location /live/ { + proxy_pass http://127.0.0.1:8935; + } + location / { proxy_pass http://127.0.0.1:3004; }