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

來源:互聯網
上載者:User

標籤:nginx mongodb nginxgridfs

nginx支援mongodb需要添加模組進行編譯安裝,步驟如下:
  • 安裝pcre-devel 
    sudo apt-get install libpcre3 libpcre3-dev
    sudo apt-get install openssl libssl-dev

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


    git submodule update 


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


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


    make
    make install

  • 修改nginx的conf檔案

  1. server {  

  2.         listen       80;  

  3.         server_name s1.111du.com;  

  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.     }

 

本文出自 “我愛CTO” 部落格,請務必保留此出處http://tanjunjie.blog.51cto.com/6988/1579626

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

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.