24 lines
405 B
Plaintext
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;
|
|
}
|
|
}
|