Nginx RTMP Module Stat

  1. 將 RTMP 模組檔案解壓縮後的 stat.xsl 複製到網頁目錄
wget https://github.com/arut/nginx-rtmp-module/archive/master.zip
unzip master.zip
cp nginx-rtmp-module-master/stat.xsl /usr/local/nginx/html/.
  1. 編輯 Nginx 設定檔,加入 stat 網頁設定
        location /stat {
            rtmp_stat all;
            rtmp_stat_stylesheet stat.xsl;
        }

        location /stat.xsl {
            root html;
        }
  1. 重新讀取設定檔

  2. 連結網頁 http://[ip]/stat
    20140901

參考 : https://github.com/arut/nginx-rtmp-module

This entry was posted in Nginx, RTMP. Bookmark the permalink.