搭建Nginx+rtmp+hls直播推流服务器

搭建Nginx+rtmp+hls直播推流服务器

1 准备工具
使用yum安装git

[root~]# yum -y install git

下载nginx-rtmp-module,官方github地址

// 通过git clone 的方式下载到服务器上
[root~]# git clone https://github.com/arut/nginx-rtmp-module.git

yum 安装 openssl

[root~]# yum -y install openssl openssl-devel

2 安装Nginx服务器,官方网址
下载Nginx解压,并添加rtmp和openssl支持

如果需要nginx监控模块 下面倒数第二行后面添加

--with-http_stub_status_module
--with-http_stub_status_module
//这里我安装的是 nginx-1.10.3 版本
[root~]# wget http://nginx.org/download/nginx-1.10.3.tar.gz 
[root~]# tar -zxvf nginx-1.10.3.tar.gz 
[root~]# cd nginx-1.10.3
//添加rtmp和openssl支持
[root~]# ./configure --add-module=/替换为自己的安装路径(path/to)/nginx-rtmp-module --with-http_ssl_module
[root~]# make && make install

如果已经安装过Nginx,只需要找到Nginx源码目录添加rtmp的支持即可

1.查看当前安装的Nginx版本
[root~]# /usr/local/nginx/sbin/nginx -v
查询结果:nginx version: nginx/1.10.3
2.再使用find命令查找其位置
[root~]# find / -name nginx-1.10.3
查询结果:/root/nginx-1.10.3
3.cd到查询到的源目录
[root~]# cd  /root/nginx-1.10.3
4.添加rtmp的支持(如果看到一个绿色的 configure 文件就说明查找对了)
[root~]# ./configure --add-module=/替换为自己的安装路径(path/to)/nginx-rtmp-module
[root~]#  make && make install
5.启动nignx
[root~]# /usr/local/nginx/sbin/nginx

3 修改Nginx配置文件nginx.conf
使用vi命令打开 nginx.conf,输入 i 进入编辑状态

[root~]# vi /usr/local/nginx/conf/nginx.conf
# 在http节点同级加上rtmp配置:
rtmp {
    server {
        listen 1935;
        chunk_size 2048;
        drop_idle_publisher 10s; #指定的时间内丢弃空闲的publisher

        application rtmplive {
            live on;
            record off;

            notify_method get; # 跳转的时候,默认以POST方式传输参数,修改成GET方式(权限验证url参数方式用)
            on_publish http://127.0.0.1/on_publish; # 推流权限验证地址(可选)

#转推流
push rtmp://****;

}

  # HLS 配置(可选,可以和上面的applicantion配置在一起)
        application hls {
            live on;
            hls on;
            hls_path /tmp/hls; #需要手动创建路径
            hls_continuous on; #切片编号从上一次结束开始
        }
    }
}

#http配置 简单权限验证 HLS配置
http {

    server {

        listen      8080;
        
        # 推流权限验证
        location /on_publish {
            default_type text/html;
            if ( $args ~ pass=1234 ) { # 如果url参数包括 pass=1234
                return 200;
            }
            return 404;
        }

        # 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.
            # Copy stat.xsl wherever you want
            # and put the full directory path here
            root /path/to/stat.xsl/;
        }

        # HLS(可选)
        location /hls {
            # Serve HLS fragments
            types {
                application/vnd.apple.mpegurl m3u8;
                video/mp2t ts;
            }
            root /tmp; #root path
            add_header Cache-Control no-cache;
        }
    }
}

nginx状态监控页面(需前面安装http_stub_status_module)

 # nginx状态监控页面
        location /status {
            # Turn on nginx stats
            stub_status on;
            # I do not need logs for stats
            access_log   off;
            # Security: Only allow access from 192.168.1.100 IP #
            #allow 192.168.1.100;
            # Send rest of the world to /dev/null #
            #deny all
        }

重启nginx

[root~]# nginx -s reload #方法一
[root~]# systemctl restart nginx.service #方法二

开机启动

# vi /lib/systemd/system/nginx.service
[Unit]
Description=nginx 
After=network.target 
   
[Service] 
Type=forking 
ExecStart=/usr/local/nginx/sbin/nginx
ExecReload=/usr/local/nginx/sbin/nginx reload
ExecStop=/usr/local/nginx/sbin/nginx quit
PrivateTmp=true 
   
[Install] 
WantedBy=multi-user.target
# systemctl enable nginx.service
systemctl start nginx.service    启动nginx
systemctl stop nginx.service    结束nginx
systemctl restart nginx.service    重启nginx

4 推流
使用obs推流

url填写 rtmp://[服务器ip]:[端口]/[nginx配置中rtmp的application名称],如
rtmp://10.129.0.100:1935/hls

如配置HLS,需填写串流码,名称随意,如 demo,这个名称在HLS方式拉流时会用到(笔者测试中发现,个别电脑推流填写串流码名称后,使用vlc不能直接播放rtmp,去掉串流码名称后可正常播放)

如配置url验证,在url后面添加验证参数,如
rtmp://10.129.0.100:1935/hls?pass=1234,“?pass=1234”可以放在串码流中

搭建Nginx+rtmp+hls直播推流服务器

5 拉流
使用vlc拉流

填写网络URL 如
http://10.129.0.100:8080/hls/demo.m3u8

注意m3u8的文件名与推流时填的串流码一致

或者填写rtmp链接,如
rtmp://10.129.0.100:1935/hls

搭建Nginx+rtmp+hls直播推流服务器

附:nginx默认路径:/usr/local/nginx/html

原创文章,作者:howkunet,如若转载,请注明出处:https://www.intoep.com/system/linux/62644.html

(0)
打赏 微信赞赏 微信赞赏 支付宝赞赏 支付宝赞赏
上一篇 2023-12-12 09:42
下一篇 2023-12-21 09:38

相关推荐

  • Nginx实现灰度发布的四种方法及案例

    在众多的工具中,Nginx作为高效的反向代理服务器,凭借其强大的请求分发能力,成为了实现灰度发布的核心工具之一。今天,我们就来详细讨论如何在 Nginx 中实现请求的灰度发布。 一…

    2024-12-31
    1560
  • Nginx 加强 WordPress 防护的规则

    Nginx+ WordPress 的组合是目前非常普及的组合了,我们完全可以借助 Nginx 规则来加强 WordPress 的防护,提高 WordPress 的安全性,分享自用的 Nginx 针对 WordPress 的防护规则,部分规则大家只需要根据自己的需要进行调整即可。

    2024-03-07
    2041
  • 超强大的 Nginx 可视化管理平台 Nginx-Proxy-Manager 中文入门指南

    nginx-proxy-manager 是一个反向代理管理系统,它基于 NGINX,具有漂亮干净的 Web UI。还可以获得受信任的 SSL 证书,并通过单独的配置、自定义和入侵保护来管理多个代理。

    2024-07-03 Linux
    3170
  • nginx站点开启http/3 提升网站速度与安全性

    HTTP/3作为最新的网络协议,通过采用QUIC传输层协议,进一步提升了网页传输的效率和安全性。相比HTTP/2,HTTP/3在网络连接速度、可靠性和安全性方面具有显著优势。因此,开启HTTP/3成为许多站长优化网站性能的重要步骤。本文将介绍HTTP/3的基本概念、优势,以及如何在NGINX站点上开启HTTP/3以提升网站的速度与安全性。

    2024-10-29
    1810
  • 详细的Nginx 配置清单

    本文,我们总结了一些常用的 Nginx 配置代码,希望对大家有所帮助。Nginx 是一个高性能的 HTTP 和反向代理 web 服务器,同时也提供了 IMAP/POP3/SMTP 服务,其因丰富的功能集、稳定性、示例配置文件和低系统资源的消耗受到了开发者的欢迎。

    2022-03-26
    2350
  • Nginx限制并发连接数与下载速度

    ngx_http_limit_conn_module模块用于限制每个定义密钥的连接数,特别是来自单个IP地址的连接数。而ngx_http_core_module则可以限制下载速度,…

    Linux 2021-12-03
    3910

发表回复

登录后才能评论
扫码了解
扫码了解
分享本页
返回顶部