CentOS7にnginx 1.7.4をインストールする方法

2017年12月16日

1.依存パッケージのインストール
$ 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

3.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

Linux

Posted by arkgame