Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Windows教程綜合 >> 系統常見問題解答 >> nginx-gridfs的安裝

nginx-gridfs的安裝

日期:2017/1/20 17:47:07      編輯:系統常見問題解答

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>

Copyright © Windows教程網 All Rights Reserved