Step 1: Sign a third-party trusted SSL certificate You can apply for a free SSL certificate directly in Alibaba Cloud. Log in to your Alibaba Cloud account, search for SSL in the search bar above, and click SSL Certificate (Application Security) After arriving at this page, click Buy Certificate Select the free SSL certificate as shown in the figure and click Pay After payment is completed, jump to the console homepage and click Certificate Application After filling out the certificate application form, click Next. Click Verify and submit for review after verification is successful After the review is passed, click the download button Select Download next to nginx After downloading and decompressing, you will get a .key and .pem file. At this point, our certificate application work has been completed. Now we can start configuring https Step 2: Configure https 1. How to install nginx on centos can refer to this blog post: https://segmentfault.com/a/1190000018109309 server { listen 443 ssl http2; #Configure the default access port number for HTTPS to be 443. If the default access port for HTTPS is not configured here, Nginx may fail to start. For Nginx 1.15.0 or later, please use listen 443 ssl instead of listen 443 and ssl on. server_name www.example.xyz; #Change www.certificatestests.com to the domain name bound to your certificate, for example: www.example.com. If you purchased a wildcard domain name certificate, you need to change it to a wildcard domain name, for example: *.aliyun.com. root html; index index.html index.htm; ssl_certificate cert/cert.pem; #Replace domain name.pem with the file name of your certificate. ssl_certificate_key cert/cert.key; #Replace domain name.key with the key file name of your certificate. ssl_session_timeout 5m; ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4; #Use this encryption suite. ssl_protocols TLSv1 TLSv1.1 TLSv1.2; #Use this protocol for configuration. ssl_prefer_server_ciphers on; } If it is nginx version before 1.15, it should be configured like this: listen 443; #Configure the default access port number for HTTPS to be 443. If the default access port for HTTPS is not configured here, Nginx may fail to start. For Nginx 1.15.0 or later, please use listen 443 ssl instead of listen 443 and ssl on. server_name www.example.xyz; #Change www.certificatestests.com to the domain name bound to your certificate, for example: www.example.com. If you purchased a wildcard domain name certificate, you need to change it to a wildcard domain name, for example: *.aliyun.com. root html; ssl on; index index.html index.htm; ssl_certificate cert/cert.pem; #Replace domain name.pem with the file name of your certificate. ssl_certificate_key cert/cert.key; #Replace domain name.key with the key file name of your certificate. ssl_session_timeout 5m; ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4; #Use this encryption suite. ssl_protocols TLSv1 TLSv1.1 TLSv1.2; #Use this protocol for configuration. ssl_prefer_server_ciphers on; } 5. Configure the reverse proxy to let the default port (usually 80) proxy the port 8080 of our project, that is, we can access the port 8080 by accessing the port 80 server { listen 443 ssl http2; #Configure the default access port number for HTTPS to be 443. If the default access port for HTTPS is not configured here, Nginx may fail to start. For Nginx 1.15.0 or later, please use listen 443 ssl instead of listen 443 and ssl on. server_name www.example.xyz; #Change www.certificatestests.com to the domain name bound to your certificate, for example: www.example.com. If you purchased a wildcard domain name certificate, you need to change it to a wildcard domain name, for example: *.aliyun.com. root html; index index.html index.htm; ssl_certificate cert/cert.pem; #Replace domain name.pem with the file name of your certificate. ssl_certificate_key cert/cert.key; #Replace domain name.key with the key file name of your certificate. ssl_session_timeout 5m; ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4; #Use this encryption suite. ssl_protocols TLSv1 TLSv1.1 TLSv1.2; #Use this protocol for configuration. ssl_prefer_server_ciphers on; location / { proxy_pass http://ip:8080; //ip write your own server ip } } Save after configuration, and then restart nginx nginx -s reload sudo systemctl restart nginx Then check whether the firewall is turned on. Generally, it is turned off. If it is turned off, there is no need to turn it on. If it is open, open the server's default port (usually 80) and port 443 Then if it is a cloud server, you also need to configure the security group. Open the server management console and click Local instance security group Click Manual Add or Quick Add, add the default ports 80 and 443, and save. Next is to configure the domain name resolution. Go to the domain name console and click Resolution. Click Add Record Then resolve the public IP address of your server and click Confirm After the parsing is complete, wait for about 10 minutes before you can access the domain name. Access the swagger document of the project and you can see that it has become https (you need to manually type https here) You can see that the project was successfully accessed Reference Links: Nginx configures https to implement domain name access project: https://www.jianshu.com/p/e7b9622a63ed This is the end of this article about Alibaba Cloud Nginx configuration https to achieve domain name access project (graphic tutorial). For more relevant Nginx configuration https domain name access 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! You may also be interested in:
|
<<: MySQL 8.0.22 installation and configuration method graphic tutorial
>>: Example verification MySQL | update field with the same value will record binlog
Table of contents 1. Schematic diagram of group q...
Specific method: 1. Open Command Prompt 2. Enter ...
Execute the command: docker run --name centos8 -d...
one. Mysql Binlog format introduction Mysql binlo...
[LeetCode] 197.Rising Temperature Given a Weather...
Preface I don't know how long this friend has...
One environment Alibaba Cloud Server: CentOS 7.4 ...
Table of contents 1. Commonly used string functio...
Preface Interceptor In some modern front-end fram...
1. HTML Image <img> 1. The <img> tag ...
The first one: Using the CSS position property &l...
COALESCE is a function that refers to each parame...
p>Manually start in "Services" and i...
Table of contents text 1. Prepare the machine 2. ...
1. Use the df command to view the overall disk us...