nginx のインストールは他のライブラリに依存するため、最初に依存ライブラリをインストールする必要があります。具体的な手順は以下の通りです
http://nginx.org/download/nginx-1.2.8.tar.gz
1. PCREライブラリをインストールします
cd /usr/local/
wget ftp://ftp.csx .cam .ac.uk/pub/software/programming/pcre/pcre-8.36.tar.gz
tar -zxvf pcre-8.36.tar.gz
cd pcre-8.36
./configure
make
make install
注:一部の 64 ビット マシンでは、それを読み取るためにソフト リンク nginx を追加する必要があるため
ln -s /usr/local/lib/libpcre.so.1 /lib64/
2. zlib ライブラリをインストールします
cd /usr/local/
wget http://zlib.net/zlib-1.2.8.tar.gz
tar -zxvf zlib-1.2.8.tar.gz
cd zlib-1.2.8
./configure
make
make install
3 ssl をインストールします
方法 1:
yum -y install openssl openssl-devel
方法 2:
cd /usr/local/
wget http://www.openssl.org/source/openssl-1.0.1c.tar.gz
tar -zxvf openssl-1.0.1c.tar.gz
./config
make
make install
4. nginx
cd /usr/local/
wget http://nginx.org/download/nginx-1.6 をインストールします。 2.tar.gz
tar -zxvf nginx-1.6.2.tar.gz
cd nginx-1.6.2
./configure --prefix=/usr/local/nginx-1.6.2 --with-http_ssl_module -- with-http_gzip_static_module - -with-openssl=/usr/local/ssl
make
make install
//ソフト接続を確立します
ln -s /usr/local/nginx-1.6.2 nginx
注:
--with- http_ssl_module は設定用です https アクセスに必要なモジュールです
--with-http_gzip_static_module は静的圧縮モジュールです
nginx を起動します:
/usr/local/nginx/sbin/nginx
設定ファイルを確認します:
/usr /local/nginx/ sbin/nginx -t
起動する設定ファイルを指定します:
/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
再起動:
/usr/local /nginx/sbin/nginx -s reload
上記では、関連するコンテンツを含め、Linux での nginx のインストールを紹介しています。PHP チュートリアルに興味のある友人に役立つことを願っています。