: This article describes how to install nginx on centos7. if you are interested in the PHP Tutorial, refer to it. Install nginx
Download the installation package
Http://nginx.org/en/download.html download latest nginx-1.9.6.tar.gz
Put in centos 7/usr/local
Unzip tar-zxvf nginx-1.9.6.tar.gz
Create the nginx directory mkdir/usr/local/nginx
Go to the unzip directory cd/usr/local/nginx-1.9.6
Install nginx
Next, use the -- prefix parameter to specify the nginx installation directory. make and make install
./Configure $ installed in/usr/local/nginx by default
If an error message is displayed:./configure: error: the HTTP cache module
RequireS md5 functions
From OpenSSL library. You can either disable the module by using
-- Without-http-cache option, or install the OpenSSL library into the system,
Or build the OpenSSL library statically from the source with nginx by using
-- With-http_ssl_module -- with-openssl = Options.
Solution:
Yum-y install pcre-devel openssl-devel
./Configure -- prefix =/usr/local/nginx
Continue installation
Make
Make install
The nginx startup command is:
/Usr/local/nginx/sbin/nginx-c/usr/local/nginx/conf/nginx. conf
Restart
/Usr/local/nginx/sbin/nginx-s reload
The above describes how to install nginx on centos7, including The require content, and hope to help anyone interested in PHP tutorials.