[컴 파일 패키지] nginx1.6.2-1~precise.debian.tar.gz

1973 단어 nginxprecise
맞 춤 형 수 요 를 만족 시 키 기 위해 nginx 공식 deb 소스 패 키 지 를 수정 하여 다시 발표 했다.
컴 파일 매개 변수
./configure \
                --prefix=/etc/nginx \
                --sbin-path=/usr/sbin/nginx \
                --conf-path=/etc/nginx/nginx.conf \
                --error-log-path=/var/log/nginx/error.log \
                --http-log-path=/var/log/nginx/access.log \
                --pid-path=/var/run/nginx.pid \
                --lock-path=/var/run/nginx.lock \
                --http-client-body-temp-path=/var/cache/nginx/client_temp \
                --http-proxy-temp-path=/var/cache/nginx/proxy_temp \
                --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp \
                --user=nginx \
                --group=nginx \
                --without-http_memcached_module \
                --without-http_scgi_module \
                --without-http_uwsgi_module \
                --with-http_ssl_module \
                --with-http_realip_module \
                --with-http_gunzip_module \
                 --with-http_gzip_static_module \
                --with-http_random_index_module \
                --with-http_secure_link_module \
                --with-http_stub_status_module \
                --with-http_auth_request_module \
                --with-file-aio \
                --with-google_perftools_module \
                --with-ipv6

또한 프로필 파라미터 도 적당 한 최 적 화 를 진행 했다.
간이 설치 컴 파일 튜 토리 얼
apt-get update
apt-get install dpkg-dev devscripts build-essential wget 
mkdir build
cd build
wget http://nginx.org/packages/ubuntu/pool/nginx/n/nginx/nginx_1.6.2.orig.tar.gz
wget http://192.168.0.1/nginx_1.6.2-1~precise.debian.tar.gz
tar zxvf nginx_1.6.2.orig.tar.gz
tar zxvf nginx_1.6.2-1~precise.debian.tar.gz -C nginx-1.6.2
cd nginx-1.6.2
dpkg-buildpackage -us -uc
dpkg -i ../nginx_1.6.2-1~precise_amd64.deb

하면, 만약, 만약... dpkg - buildpackage - us - uc 시 의존 문 제 를 알려 줍 니 다. 직접 apt - get 으로 해결 하 십시오.

좋은 웹페이지 즐겨찾기