Detailed tutorial on installing Nginx 1.16.0 under Linux

Detailed tutorial on installing Nginx 1.16.0 under Linux

Because I have been tinkering with Linux recently, I wanted to install a new version of nginx. I looked for a tutorial but couldn't find the corresponding one. After a little tinkering, I finally successfully installed the latest version.

The server environment is centos, the following are the detailed steps:

Install necessary dependency plugins

yum install -y gcc gcc-c++ pcre \
pcre-devel zlib zlib-devel openssl openssl-devel wget

Create a folder and switch to it

mkdir /customer && cd /customer

Download the installation package (if you want to install other versions, you can go to the official website link below and select the link of other versions to copy and replace)

wget https://nginx.org/download/nginx-1.16.0.tar.gz

Unzip and install

tar zxvf nginx-1.16.0.tar.gz
cd nginx-1.16.0
./configure --prefix=/usr/local/nginx
make && make install

Adding global commands

ln -s /usr/local/nginx/sbin/nginx /usr/bin/nginx

Test the installation

nginx -V

As shown below, the installation is successful:

Verify that the service is started successfully

netstat -ntlp | grep nginx

as follows:

Add nginx service

vim /lib/systemd/system/nginx.service

Insert the following into:

[Unit]
Description=nginx
After=network.target

[Service]
Type=forking
ExecStart=/usr/local/nginx/sbin/nginx
ExecReload=/usr/local/nginx/sbin/nginx -s reload
ExecStop=/usr/local/nginx/sbin/nginx -s quit
PrivateTmp=true

[Install]
WantedBy=multi-user.target

Start nginx as a service

pkill nginx

systemctl start nginx

Check whether the service is started

 systemctl status nginx
 netstat -ntlp | grep nginx

Configure nginx service to start automatically at boot

systemctl enable nginx

Now the installation is complete, the configuration file is:

vim /usr/local/nginx/conf/nginx.conf

Optional:

The version number of nginx is turned on by default and can be viewed in the default error page and http response header.

Different versions, especially lower versions of nginx, may have vulnerabilities, so if you don't want others to obtain the version number, you can choose to hide the version number.

Hide nginx version number

cd /usr/local/nginx/conf
vim nginx.conf

Change the "server_tokens" in the nginx.conf file to "off":

http {
...
server_tokens off;
...
}

Modify fastcgi.conf again

vim fastcgi.conf

Modify the following line

fastcgi_param SERVER_SOFTWARE nginx/$nginx_version;
# Change to:
fastcgi_param SERVER_SOFTWARE nginx;

Restart nginx

systemctl restart nginx

Hide version number completed

Summarize

The above is a detailed tutorial on how to install Nginx 1.16.0 under Linux. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time!

You may also be interested in:
  • How to install nginx under Linux
  • Example of how to install nginx to a specified directory
  • How to install Nginx in CentOS7 and configure automatic startup
  • How to install Nginx source code
  • How to install and start nginx in Linux
  • Nginx installation, startup, restart and shutdown on MAC
  • Tutorial on installing lnmp using yum on centos7 (linux+nginx+php7.1+mysql5.7)
  • Nginx installation detailed tutorial

<<:  The use and difference between JavaScript pseudo-array and array

>>:  A brief discussion of 3 new features worth noting in TypeScript 3.7

Recommend

MySQL 5.6.22 installation and configuration method graphic tutorial

This tutorial shares the specific code of MySQL5....

Detailed explanation of vue.js dynamic components

:is dynamic component Use v-bind:is="compone...

Detailed explanation of DOM style setting in four react components

1. Inline styles To add inline styles to the virt...

Simple analysis of EffectList in React

Table of contents EffectList Collection EffectLis...

Vue uses plug-ins to cut pictures in proportion

This article shares the specific code of Vue usin...

MySQL learning notes: data engine

View the engines supported by the current databas...

Detailed explanation of CSS style sheets and format layout

Style Sheets CSS (Cascading Style Sheets) is used...

Detailed explanation of the entry-level use of MySql stored procedure parameters

Use of stored procedure in parameters IN paramete...

Detailed explanation of the update command for software (library) under Linux

When installing packages on an Ubuntu server, you...

27 Linux document editing commands worth collecting

Linux col command The Linux col command is used t...

Detailed explanation of Nginx's control over access volume

Purpose Understand the Nginx ngx_http_limit_conn_...