initial commit

This commit is contained in:
2026-04-08 12:48:37 +03:00
commit b803989bd0
8 changed files with 878 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
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;
}
}