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

nginx-gridfs的安装

时间:2014-07-04 07:03:11      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:nginx-gridfs   videojs   

mongodb中gridfs适合存放视频和高清图片等等超大文件(小的文件建议不要存在mongodb中);

以下是在centos下配置nginx来访问mongodb中的mp4文件:


1:安装nginx-gridfs

git clone https://github.com/rjhunjhunwla/nginx-gridfs //如果不存在git:yum -y install git
cd nginx-gridfs/
git submodule init
git submodule update


2::安装nginx

./configure --prefix=/opt/nginx --add-module=/opt/software/nginx-gridfs
make
make install


3:配置nginx-gridfs:(参考:https://github.com/rjhunjhunwla/nginx-gridfs 相关的参数设置)

在nginx.conf文件中加入:

location /video {
            gridfs dbname
               root_collection=fs
               field=filename
               type=string
               user=username
               pass=passwd;
            mongo 127.0.0.1:27017;
        }

4:html中调用显示:(http://www.videojs.com/ 下载使用video.js)

<video class="video-js vjs-default-skin" controls width="640" height="264" preload="auto">
  <source src="http://127.0.0.1/video/filename.mp4" type=‘video/mp4‘ />
 </video>

nginx-gridfs的安装,布布扣,bubuko.com

nginx-gridfs的安装

标签:nginx-gridfs   videojs   

原文地址:http://blog.csdn.net/zjhh116/article/details/36648561

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