How to deploy HTTPS for free on Tencent Cloud

How to deploy HTTPS for free on Tencent Cloud

Recently, when I was writing a WeChat applet, the WeChat applet required all request interfaces to be deployed on the https protocol, so I studied how to deploy an https environment on Tencent Cloud and found that it was relatively simple. First of all, my server environment is Ubuntu 16.04, LAMP environment.

Get an SSL Certificate

In Tencent Cloud's SSL certificate service, the domain name (DV) SSL certificate is free, so we are mainly applying for this certificate this time. If you need other types of certificates, please also pay for the application.

Enter the SSL certificate management console and click Apply for a certificate

You can see the application form as shown below:

After filling in the application information, wait about an hour for the certificate to be issued. Then configure the applied secondary domain name in Cloud Resolution:

After resolving the secondary domain name, wait for the certificate application to be completed.

After the certificate application is approved, download the certificate.

Upload SSL Certificate

Unzip the downloaded certificate and you will see certificates for Apache, IIS, Nginx, Tomcat, etc. Select the corresponding certificate according to your server environment. Here, based on the Apache environment I am using, I use FileZilla to upload the certificate file to the Apache directory. The path I uploaded is /etc/apache2/ctr, where ctr is the folder I created to store the certificate.

Add HTTPS to Apache Configuration

After the certificate is uploaded, I create a file called vhostssl.conf in the path /etc/apache2/sites-available and write the https configuration information of my site in this file.

Listen 443
<VirtualHost *:443>
  ServerName www.example.com:443
  DocumentRoot "/var/www/html/example"
  ServerAlias ​​www.example.com
  SSLEngine on
  SSLCertificateFile "/etc/apache2/ctr/examplecom/Apache/2_example.com.crt"
  SSLCertificateKeyFile "/etc/apache2/ctr/examplecom/Apache/3_example.com.key"
  SSLCertificateChainFile "/etc/apache2/ctr/examplecom/Apache/1_root_bundle.crt"
</VirtualHost>

Write the above configuration information into the vhostssl.conf file. Note that you should replace example with your own domain name and modify it to the correct certificate path.

After the configuration file is completed, go to the /etc/apache2/sites-enabled/ path,

ln -s ../sites-available/vhostssl.conf

Execute this command to add a soft link to the sites-available directory.

After all these tasks are completed, execute

$ service apache2 restart

Restart the Apache server, then enter https in front of the domain name you configured, and you will see a small green lock. The https configuration is now complete.

After completing the configuration, you will find it very simple, right?

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Detailed steps to deploy https on Alibaba Cloud using nginx + node

<<:  Differences between this keyword in NodeJS and browsers

>>:  Steps for using the non-installed version of MySQL and solutions for forgetting the password

Recommend

MySQL 8.0.12 installation configuration method and password change

This article records the installation and configu...

How to change the domestic source of Ubuntu 20.04 apt

UPD 2020.2.26 Currently Ubuntu 20.04 LTS has not ...

Analyzing Linux high-performance network IO and Reactor model

Table of contents 1. Introduction to basic concep...

Implementation of CSS scroll bar style settings

webkit scrollbar style reset 1. The scrollbar con...

Automated front-end deployment based on Docker, Nginx and Jenkins

Table of contents Preliminary preparation Deploym...

HTML is something that web page creators must learn and master.

What are the benefits of learning HTML? 1: Easily...

How to import CSS styles into HTML external style sheets

The link-in style is to put all the styles in one...

A Brief Analysis of CSS Selector Grouping

Selector Grouping Suppose you want both the h2 el...

Tips for designing photo preview navigation on web pages

<br />Navigation does not just refer to the ...

Postman automated interface testing practice

Table of contents Background Description Creating...

CSS achieves colorful and smart shadow effects

background Ever wondered how to create a shadow e...

Detailed explanation of the watch listener example in vue3.0

Table of contents Preface The difference between ...

How to change apt-get source in Ubuntu 18.04

When using apt-get to install, it will be very sl...

jQuery+swiper component realizes the timeline sliding year tab switching effect

Result: Implementation code: Need to be used with...