CentOS 에 Nginx 컴 파일 설치

1202 단어 nginxcentos
배경
CentOS 7.2 자체 가 가지 고 있 는 Nginx 에 지원 하 는 문제 가 없 는 것 을 해결 하기 위해 서 는 Nginx 를 직접 컴 파일 하여 설치 해 야 합 니 다.
설치 의존
업데이트
yum update -y
yum -y install gcc gcc-c++ make zlib-devel pcre-devel openssl-devel


컴 파일 및 설치
다운로드 (홈 페이지 에 방문 하여 최신 버 전 다운로드 가능)
wget http://nginx.org/download/nginx-1.10.1.tar.gz

스트레스 를 풀다
tar -xvf nginx-1.10.1.tar.gz

컴 파일
cd cd nginx-1.10.1
./configure --with-http_auth_request_module

설치 하 다.
make && make install

운행 하 다.
/usr/local/nginx/sbin/nginx

기타
현재 버 전이 어떤 기능 을 지원 하 는 지 판단 하 는 명령https://github.com/shopware/devdocs/blob/master/source/blog/_posts/2015-03-02-sso-with-nginx-auth_request.md#installation:
nginx -V 2>&1 | grep -qF -- --with-http_auth_request_module && echo ":)" || echo ":("

비고
마지막 으로 나 는 공식 버 전 을 설치 하여 지원 하지 않 는 문 제 를 해결 할 수 있다 는 것 을 발견 했다.연결 봐, 다 눈물 이 야!
  • http://nginx.org/en/linux_packages.html
  • https://www.nginx.com/resources/admin-guide/installing-nginx-open-source/
  • 좋은 웹페이지 즐겨찾기