링크 ux (Centos 7) 컴 파일 설치 nginx

2524 단어
인 용 된 블 로그 에 수정 을 했 습 니 다.
설치 전
        아래 부분 참조        1. 설치 에 필요 한 도구:
$ yum -y install gcc gcc-c++ autoconf automake
 
$ yum -y install zlib zlib-devel openssl openssl-devel pcre-devel

설명:
pcre: 주소 재 작성 기능 입 니 다.
zlib: nginx 의 gzip 모듈, 전송 데이터 패키지, 데이터 절약 (단 자원 소모).
openssl: ssl 암호 화 프로 토 콜 을 제공 합 니 다.
2. 시스템 급 사용자 그룹 과 익명 사용자, 그리고 아래 컴 파일 시 사용
$ sudo groupadd -r nginx
 
$ sudo useradd -s /sbin/nologin -g nginx -r nginx-user
  • 、Nginx :

    1、 Nginx:http://nginx.org/en/download.html

    2、 :

$ tar -zxvf nginx-1.9.2.tar.gz
 
$ cd nginx-1.9.2/
 
$ ./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 \
--http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp \
--http-scgi-temp-path=/var/cache/nginx/scgi_temp \
--user=nginx \
--group=nginx \
--with-http_ssl_module \
--with-http_realip_module \
--with-http_addition_module \
--with-http_sub_module \
--with-http_dav_module \
--with-http_flv_module \
--with-http_mp4_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-mail \
--with-mail_ssl_module \
...
...
...
    
$ ./configure --help

    

3、

$ make && make install

4、

$ vi /etc/profile

, ,

PATH=/usr/local/nginx/sbin:$PATH
export PATH

5、

ginx -c /usr/local/nginx/conf/nginx.conf


좋은 웹페이지 즐겨찾기