nginx 支持mongodb的編譯安裝和配置

nginx支持mongodb須要添加模塊進行編譯安裝,步驟以下:

  • 安裝pcre-devel 
    sudo apt-get install libpcre3 libpcre3-dev
    sudo apt-get install openssl libssl-dev

    html

  • 安裝nginx-gridfs
    git clone git://github.com/mdirolf/nginx-gridfs.git
    cd nginx-gridfs/
    git submodule init  nginx


    git submodule update git


    cd /data/soft/nginx-1.6.2  (此處爲下載好的nginx源碼目錄)github


    ./configure --add-module=/data/soft/nginx-gridfs  (此處爲上面git下載的gridfs的目錄)mongodb


    make
    make installide

  • 修改nginx的conf文件spa

  1. server {  orm

  2.         listen       80;  server

  3.         server_name s1.111du.com;  htm

  4.   

  5.         //全部請求都映射到mongodb的服務中  

  6.         location / {  

  7.             //經過field=filename來作數據查詢  

  8.             gridfs imark field=filename type=string;  

  9.             //mongodb的服務  

  10.             mongo 127.0.0.1:30001;  

  11.         }  

  12.   

  13.         # redirect server error pages to the static page /50x.html  

  14.         #  

  15.         error_page   500 502 503 504  /50x.html;  

  16.         location = /50x.html {  

  17.             root   html;  

  18.         }  

  19.   

  20.         # deny access to .htaccess files, if Apache's document root  

  21.         # concurs with nginx's one  

  22.         #  

  23.         location ~ /WEB-INF/ {  

  24.             deny  all;  

  25.         }  

  26.     }

相關文章
相關標籤/搜索