码迷,mamicode.com
首页 > 其他好文 > 详细

nginx rtmp安装

时间:2019-03-21 01:12:13      阅读:379      评论:0      收藏:0      [点我收藏+]

标签:lin   pre   成功   tle   figure   file   uri   roo   style   

下载 nginx

git clone https://github.com/nginx/nginx.git

下载 nginx-rtmp-module

git clone https://github.com/arut/nginx-rtmp-module.git

安装依赖库

sudo apt install libssl-dev

编译

./auto/configure --add-module=/home/forrest/Code/nginx-rtmp-module
make -j8
sudo make install

配置nginx, 修改 /usr/local/nginx/conf

rtmp {
    server {
        listen 1935;
        chunk_size 4096;
        application live {
            live on;
        }
    }
}

运行 nginx

cd /usr/local/nginx/sbin
sudo ./nginx

查看 nginx 是否启动成功

配置网页查看推流的状态

    server {
        listen 8080;
        location /stat {
            rtmp_stat all;
            rtmp_stat_stylesheet stat.xsl;
        }
        location /stat.xsl {
            root /home/forrest/Code/nginx-rtmp-module;
        }
    }

重新运行 nginx

sudo pkill nginx
sudo ./nginx

配置完成的 nginx.conf

nginx rtmp安装

标签:lin   pre   成功   tle   figure   file   uri   roo   style   

原文地址:https://www.cnblogs.com/forrest-lin/p/10569015.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!