CentOS 6.5 컴 파일 설치 Nginx 1.8.0

1613 단어 php-fpmnginxcentos6.5
컴 파일 의존 패키지 설치
yum -y install gcc gcc-c++ autoconf automake make
yum -y install zlib zlib-devel openssl 
yum -y install openssl-devel pcre pcre-devel

Nginx 설치
#     
wget  http://nginx.org/download/nginx-1.8.0.tar.gz  

#   
tar zxvf nginx-1.8.0.tar.gz
cd nginx-1.8.0

#     
./configure
make && make install

실행 configure 후 큰 설정 정 보 를 볼 수 있 습 니 다:
nginx path prefix: "/usr/local/nginx"
  nginx binary file: "/usr/local/nginx/sbin/nginx"
  nginx configuration prefix: "/usr/local/nginx/conf"
  nginx configuration file: "/usr/local/nginx/conf/nginx.conf"
  nginx pid file: "/usr/local/nginx/logs/nginx.pid"
  nginx error log file: "/usr/local/nginx/logs/error.log"
  nginx http access log file: "/usr/local/nginx/logs/access.log"
  nginx http client request body temporary files: "client_body_temp"
  nginx http proxy temporary files: "proxy_temp"
  nginx http fastcgi temporary files: "fastcgi_temp"
  nginx http uwsgi temporary files: "uwsgi_temp"
  nginx http scgi temporary files: "scgi_temp"

Nginx 설정
위의 설정 정 보 를 주의 하 십시오. Nginx 의 설정 파일 은 /usr/local/nginx/conf/ 디 렉 터 리 에 있 습 니 다. 이 때 /usr/local/nginx/conf/nginx.conf 파일 을 편집 하고 설정 을 수정 할 수 있 습 니 다. 이것 은 더 이상 말 하지 않 겠 습 니 다.
설정 이 완료 되면 nginx -t 설정 이 올 바른 지 확인 할 수 있 습 니 다.
수정 후 Nginx 를 시작 할 수 있 습 니 다:
nginx -c /usr/local/nginx/conf/nginx.conf 

#    nginx   
ps aux | grep nginx 

좋은 웹페이지 즐겨찾기