nginx 제3자 모듈 추가

2651 단어
nginx 제3자 모듈 추가
제3자 모듈 추가
파일 서버 fastdfs + nginx 를 구축 하 는 과정 에서 nginx 부분 이 약간의 구 덩이 를 만 났 습 니 다. ubuntu 시스템 에 있 는 nginx 에 제3자 모듈 fastdfs - nginx - module 을 설치 하 는 것 으로 기록 되 어 있 습 니 다.
  • nginx 정보
  • apt 를 통 해 설 치 된 nginx 기본 상황
    /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 소스 코드 apt - get source nginx 다운로드
    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
    
  • 사용 모듈
  • 필요 한 설정 에서 이 모듈 을 사용 합 니 다. 예제, 8888 포트 에 들 어간 요청 을 이 모듈 에 사용 합 니 다.
    server {
        listen 8888;
        server_name localhost;
        location ~/group[0-9]/M00/ {
            ngx_fastdfs_module;
        }
    }
    

    좋은 웹페이지 즐겨찾기