Problem description:The editor encountered an expiration of the https protocol, so he reapplied and deployed the SSL certificate on the Nginx server Installation Steps1. PreparationIn the SSL Certificate Management Console, download and decompress the cloud.tencent.com certificate file package to a local directory. After decompression, you can obtain the certificate file of the relevant type. It contains the Nginx folder and the CSR file: Folder Name: Nginx Folder Contents: 1_cloud.tencent.com_bundle.crt certificate file 2_cloud.tencent.com.key private key file CSR file content: cloud.tencent.com.csr file 2. Remotely connect to the server3. Copy the certificate and private key filesCopy the obtained 1_cloud.tencent.com_bundle.crt certificate file and 2_cloud.tencent.com.key private key file from the local directory to the /usr/local/nginx/conf directory of the Nginx server (this is the default installation directory of Nginx, please operate according to the actual situation). 4. Edit the conf/nginx.conf file in the Nginx root directoryThe edited content is as follows: // Edit content server { #SSL access port number is 443 listen 443 ssl; #Fill in the domain name of the bound certificate server_name cloud.tencent.com; //Fill in the certificate domain name here#Certificate file name ssl_certificate 1_cloud.tencent.com_bundle.crt; //Fill in the name of the certificate file just copied here#Private key file name ssl_certificate_key 2_cloud.tencent.com.key; //Fill in the name of the private key file just copied here ssl_session_timeout 5m; #Please configure ssl_protocols according to the following protocols TLSv1 TLSv1.1 TLSv1.2; #Please configure the encryption suite according to the following suite configuration, and the writing method follows the openssl standard. ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:HIGH:!aNULL:!MD5:!RC4:!DHE; ssl_prefer_server_ciphers on; location / { #Website homepage path. This path is for reference only. Please follow the actual directory for specific operations. #For example, if your website's running directory is in /etc/www, fill in /etc/www. root html; index index.html index.htm; } } 5. In the Nginx root directory, verify the configuration file problem by executing the following command//In the nginx root directory, enter nginx -t in cmd After input, the question will be displayed. If there is a problem, modify it according to the problem. If not, proceed to the next step 6. Restart Nginx and access the website// Restart Nginx nginx -s stop start nginx This is the end of this article about the steps to install and deploy SSL certificates under Nginx. For more information about Nginx deployment of SSL certificates, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
>>: Detailed explanation of the seven data types in JavaScript
This article example shares the specific code for...
MySQL UNION Operator This tutorial introduces the...
Look at the code first Copy code The code is as fo...
Experimental environment: Physical machine Window...
Let's look at the case first. Use vue+swiper ...
Table of contents Two major categories of functio...
Install the latest stable version of MySQL on Lin...
Table of contents 1.MySQL adds or subtracts a tim...
background: As a DBA, most of the DDL changes of ...
Table of contents origin Virtual Memory Paging an...
Preface 1. Debounce: After a high-frequency event...
Table of contents Initialization of echart app-ba...
Recently, when doing homework, I needed to nest a ...
Good HTML code is the foundation of a beautiful w...
Creating a Cursor First, create a data table in M...