CentOS 5.5に nginx-0.8.52をインストール

 phpのfpmをインストールしたからには、非同期IOを使った高速WEBサーバーnginxをインストールしてみましょう。URLのrewrite正規表現ライブラリPCREが必要なので予め入れておきます。

cd /usr/local/src
wget http://nginx.org/download/nginx-0.8.52.tar.gz
tar xvzf nginx-0.8.52.tar.gz
cd nginx-0.8.52
./configure \
--with-http_ssl_module \
--without-mail_pop3_module \
--without-mail_imap_module \
--without-mail_smtp_module \
--with-http_stub_status_module
make
make install