Nginx download and configure the compilation process

A, Nginx program is written in C, with you first need to install the tool on a compiler system, such as GNU Compiler Collection (GCC)
Second, the installation Nginx
1. http://nginx.org/en/download.html

Nginx-1.16.0 pgp select Copy Link

2.wget http://nginx.org/download/nginx-1.16.0.tar.gz

3.tar -zxvf nginx-1.16.0.tar.gz

4.mv nginx-1.16.0 /usr/local/src

5.yum install openssl openssl-devel zlib zlib-devel pcre pcre-devel

6.yum install gcc

7.yum install gcc-c++

8.cd /usr/local/src/nginx-1.16.0

9.make

10.make install

11.cd /usr/local/nginx/sbin

12 ../ nginx -t (test)

13../nginx

14.ps to | grep nginx

15.setenforce 0

16.systemctl stop firewalld.service

17.ifconfig

18. Open your browser and
enter 192.168.1.117 (own ip) + port (without also OK)

19. occur
Welcome to nginx!

If you see this page, the nginx web server is successfully installed and working. Further configuration is required.

For online documentation and support please refer to nginx.org.
Commercial support is available at nginx.com.

Thank you for using nginx.

Guess you like

Origin blog.51cto.com/14375805/2416001