먼저 http://nginx.org/download/로 이동하여 필요한 nginx 버전 패키지를 다운로드하세요. wget을 사용하여 다운로드하세요
해당 패키지를 설치하기 위해 리디렉션이 필요한 경우
yum -y install pcre*<pre name="code" class="plain">wget http://nginx.org/download/nginx-1.7.8.tar.gz
tar -zxvf nginx-1.7.8.tar.gz
./configure --prefix=/usr/local/nginx \ --with-http_ssl_module --with-http_stub_status_module --with-pcre
如果没有报错直接运行 make && make install cd /usr/local/nginx/sbin ./nginx 启动对应的nginx服务
위 내용은 nginx 컨텐츠를 포함하여 nginx 소스 패키지 설치에 대해 소개하고 있으며, PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.