博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
nginx实现 mp4流媒体服务器
阅读量:6761 次
发布时间:2019-06-26

本文共 1810 字,大约阅读时间需要 6 分钟。

  hot3.png

一.安装编译时说需要的扩展

yum install automake autoconf make gcc gcc-c++

 

二.安装nginx-rtmp-module

2.1第一种方式比较简单

yum install pcre pcre-devel  yum install zlib zlib-devel  yum install openssl openssl--devel

然后下载nginx,nginx-rtmp-module模块,并解压

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

因为已经安装nginx,是一键安装的

#进入源代码目录cd /usr/local/lnmp-1.4/src/  #解压 tar -xvf nginx-1.12.1.tar.gz#进入解压后的nginx 目录cd nginx-1.12.1#编译./configure --user=www --group=www --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-http_flv_module --with-http_mp4_module --with-http_gzip_static_module --with-ipv6 --with-http_sub_module --with-openssl=/usr/local/src/lnmp1.4/src/openssl-1.0.2l --with-ld-opt=-ljemalloc --add-module=/usr/local/src/nginx-rtmp-module#安装make && make install

 

配置nginx.conf

说明:添加这个两个参数 : limit_rate_after 5m;  limit_rate 200k;

server    {        listen 80 default_server;        #listen [::]:80 default_server ipv6only=on;        server_name _;        index index.html index.htm index.php;        root         /var/www/html/video;        limit_rate_after 5m;        limit_rate 100k;        #error_page   404   /404.html;        # Deny access to PHP files in specific directory        #location ~ /(wp-content|uploads|wp-includes|images)/.*\.php$ { deny all; }        include enable-php.conf;        location /nginx_status        {            stub_status on;            access_log   off;        }        location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$        {            expires      30d;        }        location ~ .*\.(js|css)?$        {            expires      12h;        }        location ~ /.well-known {            allow all;        }        location ~ /\.        {            deny all;        }        access_log  /home/wwwlogs/access.log;    }

 

转载于:https://my.oschina.net/AnnaWu/blog/1865258

你可能感兴趣的文章
【Javascript】类,封装性 -- 1
查看>>
Mono for Android安装配置破解
查看>>
uploadfy 常见问题收集
查看>>
WPF----数据绑定
查看>>
子类化GetOpenFileName/GetSaveFileName, 以及钩子函数OFNHookProc的使用的简要说明
查看>>
C语言中判断int,long型等变量是否赋值的方法
查看>>
leetcode -- Longest Valid Parentheses
查看>>
详解JAVA输出Hello World
查看>>
概率问题随笔
查看>>
关于在堆中创建字符串对象的疑惑
查看>>
poj1077(康托展开+bfs+记忆路径)
查看>>
hibernate 树状映射
查看>>
值得 Web 开发人员收藏的20个 HTML5 实例教程
查看>>
移动设备、手机浏览器Javascript滑动事件代码
查看>>
@Resource注解
查看>>
Android(Linux) 网卡名修改
查看>>
Ubuntu 中的VI和vim
查看>>
BaseAnimation是基于开源的APP,致力于收集各种动画效果(最新版本1.3) (转)
查看>>
Libgdx window add alpha action change the background actor alpha
查看>>
(转)过滤器原理
查看>>