1.安装pcre-8.34(Perl兼容的正则表达式库模块)
wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.34.tar.gz
tar zxvf pcre-8.34.tar.gz
进入解压后的pcre-8.34目录,安装pcre-8.34
./configure
make
make install
2.安装nginx_mod_h264_streaming-2.2.7(流媒体支持模块)
wget http://h264.code-shop.com/download/nginx_mod_h264_streaming-2.2.7.tar.gz
tar -zxvf nginx_mod_h264_streaming-2.2.7.tar.gz
3.下载nginx
wget http://www.nginx.eu/download/sources/nginx-1.0.4.tar.gz
tar zxvf nginx-1.0.4.tar.gz
4.进入解压后的nginx_mod_h264_streaming-2.2.7,修改Makefile文件中NGINX变量为当前的nginx-1.0.4目录
NGINX=../nginx-1.0.4/
5.进入解压后的nginx-1.0.4目录,配置nginx-1.0.4并指定pcre-8.34和nginx_mod_h264_streaming-2.2.7的包路径
./configure --sbin-path=/usr/local/sbin --without-http-cache --with-http_stub_status_module --with-http_gzip_static_module --with-pcre=../pcre-8.34 --add-module=../nginx_mod_h264_streaming-2.2.7
6.将nginx_mod_h264_streaming-2.2.7/src/ngx_http_streaming_module.c中的158~161行代码注释掉
if(r->zero_in_uri)
{
return NGX_DECLINED;
}
6.进入解压后的nginx-1.0.4目录,安装nginx
make
make install
7.若让该服务器支持MP4的视频,则需在/usr/local/nginx/conf/nginx.conf的Server模块中添加以下代码
location ~ \.mp4$ {
mp4;
}
8.启动nginx
sudo nginx
9.测试
在浏览器中输入本地IP地址加上“:80”,弹出“Welcome to nginx!”,这就说明nginx已经安装成功
若要远程访问该服务器中的视频,需要将视频文件放置到/usr/local/nginx/html目录中,然后通过”http://<nginx服务器地址>/视频名称“来访问。
10.大功告成,休息一下,做好用Android手机做一个移动网络视频点播系统的准备了吗?