added RTMP stats note

This commit is contained in:
Roman Arutyunyan 2012-05-10 18:35:39 +04:00
parent 7d895d54a6
commit 6761a88516

24
README
View file

@ -104,3 +104,27 @@ rtmp {
}
}
# HTTP can be used for accessing RTMP stats
http {
server {
listen 8080;
# This URL provides RTMP statistics in XML
location /stat {
rtmp_stat all;
# Use this stylesheet to view XML as web page
# in browser
rtmp_stat_stylesheet stat.xsl;
}
location /stat.xsl {
# XML stylesheet to view RTMP stats
root /home/rarutyunyan/nginx-rtmp-module/;
}
}
}