created mediamtx server for audio streams

This commit is contained in:
tdv
2025-09-23 19:01:48 +03:00
parent aa60651610
commit 4c4d254852
3 changed files with 114 additions and 0 deletions

View File

@@ -40,4 +40,17 @@ server {
proxy_read_timeout 3600s;
proxy_send_timeout 3600s;
}
# --- LIVE ---
# HLS playlist/segments
location /hls/ {
proxy_pass http://mediamtx:8888/;
proxy_http_version 1.1;
}
# WebRTC WHIP/WHEP/test pages
location /webrtc/ {
proxy_pass http://mediamtx:8889/;
proxy_http_version 1.1;
}
}