Implementation of Nginx configuration https

Implementation of Nginx configuration https

1: Prepare https certificate

https certificate: I received a one-year free https certificate from Huawei.

Download Certificate

We are configuring nginx certificate, so just take the certificate in the nginx file

2: Prepare nginx ssl module

My path is: usr/local/nginx

Enter the nginx installation directory: usr/local/nginx

Command: ./sbin/nginx -v

Check whether there is an SSL module. The following figure shows that it is not installed.

Install the ssl module:

Generally, there is no SSL module. Next, enter your unzipped nginx directory. Note that this is not the nginx installation directory, but the unzipped directory. After entering the directory, enter

./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module

Then execute:

make

#Remember not to execute make install, otherwise nginx will be reinstalled

After the above operations are completed, the objs folder will appear in your directory, and the nginx file will exist in the folder, as shown in the figure:

Replace the nginx file in this directory with the one in the installation directory sbin:

#Enter the nginx installation directory to stop the nginx service

./sbin/nginx -s stop

If keepalive nginx high availability is installed, you need to stop keepalive,

If no system service is added, then pkill -9 keepalive

systemctl stop keepalived.service

#Replace the previous

nginx cp /root/nginx/objs/nginx /usr/local/nginx/sbin

After replacement, start keepalive and start nginx

Check whether the installation is successful

./sbin/nginx -V

If the following appears, SSL is installed successfully.

3: Configure SSL certificate

Create a cert directory in the Nginx installation directory and copy server.key and server.crt to the cert directory of nginx.

Configure the nginx.conf file in the nginx installation directory

Restart nginx ./sbin/nginx -s reload

4: Browser https protocol access, if the access is successful, https configuration is successful.

Huawei's official website also has configuration documents

This is the end of this article about the implementation of Nginx configuration https. For more relevant Nginx configuration https content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

<<:  How to display TIF format images in browser

>>:  A complete guide to some uncommon but useful CSS attribute operations

Recommend

JavaScript common statements loop, judgment, string to number

Table of contents 1. switch 2. While Loop 3. Do/W...

How to use type enhancement without typingscript

Preface Due to the weak typing of JS, loose writi...

Example of how to deploy a Django project using Docker

It is also very simple to deploy Django projects ...

Detailed explanation of MySQL joint query optimization mechanism

Table of contents MySQL federated query execution...

How to pass parameters to JS via CSS

1. Background that needs to be passed through CSS...

JavaScript to show and hide images

JavaScript shows and hides pictures, for your ref...

How to add automatic completion commands for docker and kubectl on Mac

Introduction to kubectl kubectl is a command line...

How to modify the time zone and time in Ubuntu system

On a Linux computer, there are two times, one is ...

Nginx implements https website configuration code example

https base port 443. It is used for something cal...

MySQL view introduction and basic operation tutorial

Preface View is a very useful database object in ...

Code analysis of synchronous and asynchronous setState issues in React

React originated as an internal project at Facebo...

React implements a general skeleton screen component example

Table of contents What is a skeleton screen? Demo...

WeChat applet implements login interface

The login interface of WeChat applet is implement...

Difference between varchar and char types in MySQL

Table of contents aforementioned VARCHAR Type VAR...

How to choose the right MySQL datetime type to store your time

When building a database and writing a program, i...