First, install Nginx dependent Lib library:
1. Yum Install gcc-c++-y
2. Yum Install Pcre pcre-devel-y
3. Yum Install zlib zlib-devel-y
4. Yum Install OpenSSL openssl-devel-y
Second, install Nginx
1. Switch to directory/usr/local:cd/usr/local
2. Download Nginx:wget http://nginx.org/download/ngnix-1.9.8.tar.gz
3, Decompression Nginx package: TAR-ZXVF ngnix-1.9.8.tar.gz
4. Switch to unzip directory: CD ngnix-1.9.8
5, use--prefix to specify Nginx installation directory, make, make install installation
1)./configure
2) Make
3) make install
6, after the installation is complete, you can view the relevant files of Nginx: Whereis nginx
7. Start Nginx:/usr/local/nginx/sbin/nginx
8. Check the boot status: Ps-aux | grep nginx
9, add HTTP, so that the local area network computer can access:
1) firewall-cmd--permanent--add-rich-rule= ' rule Family=ipv4 Service name=http source address=172.16.1.0/24 accept '
2) Firewall-cmd--reload
PS: article from http://www.centoscn.com/image-text/install/2014/0812/3480.html
CentOS 7 Installation Nginx