当前位置: > Linux服务器 > nginx >

centos上配置nginx为流媒体服务器

时间:2014-07-06 17:43来源:linux.it.net.cn 作者:IT网

在nginx基本配置中, configure  时加入 --with-http_mp4_module 参数(支持mp4)以及 --with-http_flv_module 参数(支持flv)即可,参看:http://wiki.nginx.org/HttpMp4Module

 

./configure --add-module=../nginx_mod_h264_streaming-2.2.7 --with-http_ssl_module --with-pcre=../pcre-8.32 --with-zlib=../zlib-1.2.7 --user=www --group=www --prefix=/usr/local/nginx2 --with-http_mp4_module --with-http_flv_module  --with-http_stub_status_module

 

在 nginx.conf 中加入mp4的配置如下:

 

        location ~ \.mp4$ {

                mp4 ;
                mp4_buffer_size     2m;
                mp4_max_buffer_size 10m;

                limit_rate_after 2m;
                limit_rate 60k;

        }

 

这样配置后,nginx即支持HTTP伪流协议(HTTP Pseudo-Streaming)。对Flash而言,http请求需加入start参数,来指定从哪里下载。对HTML5, 包括Android, iOS手机,由于支持"Accept-Range" HTTP 1.1 header头,伪流天然支持,不需要如上配置。

(责任编辑:IT)
------分隔线----------------------------
栏目列表
推荐内容