【发布时间】:2014-03-12 00:02:42
【问题描述】:
我正在使用来自这里的 nginx rtmp 模块:https://github.com/arut/nginx-rtmp-module 并且还有一个附加的统计页面,当我正确添加它并像文档中显示的那样转到 url 时,我只得到一个空白页。有什么我做错了,或者除了/stat之外我还需要在usl中输入什么吗?
这里是我的 nginx conf 的 http 部分以获取更多信息:
http {
server {
listen 80;
location /stat {
rtmp_stat all;
rtmp_stat_stylesheet stat.xsl;
}
location /stat.xsl {
root /usr/local/ngnix/html;
}
}
}
【问题讨论】: