Step 1: Add a secondary domain name to the Alibaba Cloud primary domain name The second step is to purchase the https protocol in Alibaba Cloud Security and bind the domain name. If it is only for testing, it is recommended to purchase the free version. The third step is to configure the server of the secondary domain name in nginx Nginx configures http to use port 80 Nginx configures https to use port 443 There are many ways to assign a secondary domain name to nginx. I use nginx to import folders here. All secondary domain name configurations are separated from the primary domain name configuration to avoid excessive coupling. Import the directory folder where the secondary domain name is located into nginx Directory where the second-level domain name is located The secondary domain name configuration is as follows The last step is to enter the nginx sbin directory and use the ./nginx -t command to check whether the configuration is wrong. If the configuration is OK, restart with command ./nginx -s reload and the https application will be successful The backend code must also be equipped with https service, please refer to the document for details Additional knowledge: Problems encountered with nginx domain name redirection At the request of the customer, a domain name needs to be assigned to the customer. Then our expert Qiang suggested that the backend should not be equipped with a domain name server, which is unsafe. Generally, domain names are only configured for external web servers. Combined with another favorite blog post, install nginx and then modify the configuration file as follows: ---One domain name corresponds to one conf file;;; server { listen 80; ——————————Fixed port 80 server_name AB; ——————Commas separate the primary and secondary domain names location / { root /alidata1/tomcat-tes/……;————————Server absolute path root directory index index.html index.htm index.jsp; proxy_send_timeout 1200; proxy_connect_timeout 1200; proxy_pass http://121.41.*.216*;——————————The address to be compared proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $http_host; } location /share {————————Server business module secondary path index index.html index.htm index.jsp; proxy_send_timeout 1200; proxy_connect_timeout 1200; proxy_pass http://121.4*; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $http_host; } location /chao { index index.html index.htm index.jsp; proxy_send_timeout 1200; proxy_connect_timeout 1200; proxy_pass http://121.41.4*/; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $http_host; } } After the modification, restart nginx command: service nginx restart If necessary, restart Tomcat. To configure a second domain name and another port login address in the same directory, you need to create another conf file The above article about using nginx + secondary domain name + https support is all the content that the editor shares with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Vue implementation example using Google Recaptcha verification
>>: How to change the MySQL database directory location under Linux (CentOS) system
<br />Although there are many web page creat...
The full name of SSH is Secure SHell. By using SS...
Whether MySQL needs to commit when performing ope...
1. CDN It is the most commonly used acceleration ...
Preparation: 1. Install VMware workstation softwa...
Tomcat7.0 sets virtual directory (1) Currently, o...
After installing Redis on Linux, use Java to conn...
Today I learned a new CSS special effect, the wav...
1. <div></div> and <span></s...
Purpose Understand the Nginx ngx_http_limit_conn_...
Achieve results Implementation Code html <div ...
Dig Introduction: Dig is a tool that queries DNS ...
Table of contents Why use setState Usage of setSt...
Summary: In order to make your web page look more...
Websites without https support will gradually be ...