1. gcc를 설치합니다(보통 Centos 7이 함께 제공되며 6단계가 실패한 후 설치할 수 있습니다).
yum install gcc gcc-c++
2. pcre 설치 -y pcre pcre- Devel3. Zlib
yum 설치 -y zlib zlib -devel
4. 그런 다음 nginx 디렉터리를 입력하세요)
wget
6. nginx 컴파일(ssl과 같은 일반 모듈 로드)
./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with -http_gzip_static_module --with-http_ssl_module
7. nginx 설치
make && make install
8. 시작
/usr/local/nginx/sbin/nginx
9. 그만
/usr/local/nginx/sbin/nginx -s 중지(다시 로드는 다시 시작을 의미함)
10 nginx가 성공적으로 시작되는지 확인하려면 브라우저로 nginx가 있는 머신의 IP를 방문하세요
http: //yourhost/
참고: nginx 구성 파일 위치/usr/local/nginx/conf/nginx.conf
위 내용은 Nginx 설치 사례 분석의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!