bare minimum go2rtc passthrough

This commit is contained in:
Blake Blackshear 2023-11-27 07:29:29 -06:00
parent 03d3c72821
commit cf46d9eaa7

View File

@ -164,19 +164,19 @@ http {
include proxy.conf;
}
location /live/mse/ {
location /live/webrtc/api/ws {
limit_except GET {
deny all;
}
proxy_pass http://go2rtc/;
proxy_pass http://go2rtc/api/ws;
include proxy.conf;
}
location /live/webrtc/ {
location /live/webrtc/webrtc.html {
limit_except GET {
deny all;
}
proxy_pass http://go2rtc/;
proxy_pass http://go2rtc/webrtc.html;
include proxy.conf;
}