CentOS7.0にnginx1.7.4をインストールするメモ
1.g++、gcc、openssl-devel、pcre-develとzlib-develのインストール
$ yum install gcc-c++
$ yum install pcre pcre-devel
$ yum install zlib zlib-devel
$ yum install openssl openssl–devel
2.nginxのインストール
$ find -name nginx
$ yum remove nginx
$ cd /usr/local
nginxのダウンロード
$ wget http://nginx.org/download/nginx-1.7.4.tar.gz
nginxを解凍
$ tar -zxvf nginx-1.7.4.tar.gz
$ cd nginx-1.7.4
$ ./configure $ディフォルトインストール先/usr/local/nginx
$ make
$ make install
nginxの確認
$ whereis nginx