nginx 의 mongodb 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
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
레코드를 업데이트하고 업데이트 전에 동일한 레코드를 삭제하는 방법(nest js & mongoDB)ID로 레코드를 업데이트하고 싶지만 업데이트 전에 동일한 레코드에 이전에 저장된 데이터를 삭제하고 싶습니다. 프로세스는 무엇입니까? 컨트롤러.ts 서비스.ts 나는 이것을 해결하기 위해 이런 식으로 노력하고 있습니다...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.