real-time monitoring dashboard for nginx rtmp module
first you must installed @nginx-rtmp-module
and you need to install nodejs , npm and git .
- 
open nginx config file and add at http -> server section put this code
location /stat { rtmp_stat all; rtmp_stat_stylesheet stat.xsl; } location /stat.xsl { root html; } - 
move stat.xsl file to main html folder of ningx
 - 
go to your home folder in your server
git clone https://github.com/fiftysoft/nginx-rtmp-monitoring.git
 - 
cd to nginx-rtmp-monitoring folder run :
npm install
 - 
start nodejs server
node server.js
 - 
open your borwser http://ip:9991
 
any help ask me at https://www.facebook.com/khdevelopment
    docker-compose up
Alternatively build and run the container yourself:
    docker build -t nginx-rtmp-monitoring . && docker run -it --rm -p 9991:9991 nginx-rtmp-monitoring
