Files
restreamer/http.conf
T
2026-04-08 12:48:37 +03:00

24 lines
405 B
Plaintext

server {
listen 80;
server_name localhost;
location / {
root /usr/share/angie/html;
index index.html index.htm;
}
# rtmp stat
location /stat {
rtmp_stat all;
rtmp_stat_stylesheet stat.xsl;
}
location /stat.xsl {
root /usr/share/angie/html/rtmp;
}
# rtmp control
location /control {
rtmp_control all;
}
}