Files
2026-05-19 14:28:44 +08:00

30 lines
1.0 KiB
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

location /live-play/flv/ {
proxy_pass http://ZLM_HOST_IP:7088/;
}
location /live-play/hls/ {
proxy_pass http://ZLM_HOST_IP:7088/zlm/hls/;
}
location /live-play/webrtc {
proxy_pass http://ZLM_HOST_IP:7088/index/api/webrtc;
}
location /live-play/whip {
proxy_pass http://ZLM_HOST_IP:7088/index/api/whip;
}
location /live-replay/hls-by-time-range/ {
proxy_pass http://MASTET_IN_IP:37086/api/v2/storage/hls-by-time-range/;
}
location /live-replay/fetch_file/ {
proxy_pass http://MASTET_IN_IP:37086/api/v2/storage/fetch_file/;
}
location /live-replay/hls-downloader {
proxy_pass http://MASTET_IN_IP:37080/hls-downloader;
}
zlmIp: zlm的nodeIp
zlmHttpPort 对应values.yaml中的 zlm.ports.http的值
liveOpIp: live-op服务的nodeIp
liveOpHttpPort 对应values.yaml中 liveOp.port,如果是nodePort就是 network.liveOpNodePort
liveHelperIp live-helper服务的nodeIp
liveHelperHttpPort: 对应values.yaml中 liveHelper.port,如果是nodePort就是 network.liveHelperNodePort