nginx 제3자 모듈 추가
제3자 모듈 추가
파일 서버 fastdfs + nginx 를 구축 하 는 과정 에서 nginx 부분 이 약간의 구 덩이 를 만 났 습 니 다. ubuntu 시스템 에 있 는 nginx 에 제3자 모듈 fastdfs - nginx - module 을 설치 하 는 것 으로 기록 되 어 있 습 니 다.
/usr/sbin/nginx #
/etc/nginx/ #
nginx -V
를 통 해 nginx 버 전 및 컴 파일 파 라 메 터 를 볼 수 있 습 니 다.configure arguments 후 부분 은 컴 파일 매개 변수 입 니 다. '컴 파일 매개 변수' 라 고 부 르 며, 이후 재 컴 파일 절 차 는 사 용 됩 니 다.
nginx version: nginx/1.4.6 (Ubuntu)
built by gcc 4.8.4 (Ubuntu 4.8.4-2ubuntu1~14.04.3)
TLS SNI support enabled
configure arguments: --with-cc-opt='-g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2' --with-ld-opt='-Wl,-Bsymbolic-functions -Wl,-z,relro' --prefix=/usr/share/nginx --conf-path=/etc/nginx/nginx.conf --http-log-path=/var/log/nginx/access.log --error-log-path=/var/log/nginx/error.log --lock-path=/var/lock/nginx.lock --pid-path=/run/nginx.pid --http-client-body-temp-path=/var/lib/nginx/body --http-fastcgi-temp-path=/var/lib/nginx/fastcgi --http-proxy-temp-path=/var/lib/nginx/proxy --http-scgi-temp-path=/var/lib/nginx/scgi --http-uwsgi-temp-path=/var/lib/nginx/uwsgi --with-debug --with-pcre-jit --with-ipv6 --with-http_ssl_module --with-http_stub_status_module --with-http_realip_module --with-http_addition_module --with-http_dav_module --with-http_geoip_module --with-http_gzip_static_module --with-http_image_filter_module --with-http_spdy_module --with-http_sub_module --with-http_xslt_module --with-mail --with-mail_ssl_module
nginx_1.4.6-1ubuntu3.8.debian.tar.gz
nginx_1.4.6-1ubuntu3.8.dsc
nginx_1.4.6.orig.tar.gz #
nginx-1.4.6 #
다운로드 모듈 원본 코드
git clone https://github.com/happyfish100/fastdfs-nginx-module.git --depth 1
cd fastdfs-nginx-module/src
pwd
모듈 소스 코드 위 치 를 "모듈 경로" 라 고 약칭 합 니 다.
/usr/local/src/fastdfs-nginx-module/src/
cd nginx-1.4.6
./configure --add-module=
make
make install 을 실행 할 필요 가 없습니다. 시스템 에 있 는 파일 을 덮어 씁 니 다. 필요 없습니다. 새로운 실행 가능 한 파일 은 obbs / nginx 에 생 성 되 며, 시스템 에 있 는 nginx 를 교체 하고 다시 시작 합 니 다.
sudo cp ./objs/nginx /usr/sbin
server {
listen 8888;
server_name localhost;
location ~/group[0-9]/M00/ {
ngx_fastdfs_module;
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.