nginx 의 mongodb gridfs 모듈 설치

1526 단어 mongodbWebnginxgit.
git 설치 nginx - gridfs

//git clone nginx-gridfs
git clone git://github.com/mdirolf/nginx-gridfs.git
//   git    nginx-gridfs  
cd nginx-gridfs/
//   nginx-gridfs      
git submodule init
//  nginx-gridfs      
git submodule update
//   nginx     
cd /data/soft/nginx-1.0.4
//  configure   module nginx-gridfs
./configure --add-module=/data/soft/nginx-gridfs
make
make install

nginx conf 파일 수정

//   s1.111du.com server    
server {
        listen       80;
        server_name s1.111du.com;

        //        mongodb    
        location / {
            //  field=filename      
            gridfs imark field=filename type=string;
            //mongodb   
            mongo 127.0.0.1:30001;
        }

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        location ~ /WEB-INF/ {
            deny  all;
        }
    }

참조 사이트
https://github.com/mdirolf/nginx-gridfs

좋은 웹페이지 즐겨찾기