まず 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 チュートリアルに興味のある友人に役立つことを願っています。