Detailed explanation of how to enable https service in Apache under Linux environment

Detailed explanation of how to enable https service in Apache under Linux environment

This article describes how to enable https service in Apache under Linux environment. Share with you for your reference, the details are as follows:

First, apply for an SSL certificate. Taking Alibaba Cloud as an example, find the domain name management:

Free SSL certificate:

Configure a single domain name free certificate: (valid for one year)

Click OK to verify the certificate:

After successful review, you can download the certificate:

Download the SSL certificate for Apache:

I unzipped these three and put them in the Apache installation directory /etc/httpd/cert

Add this to httpd.conf (import all conf files under the conf.d folder):

Include conf.d/*.conf

Run these two:

yum install mod_ssl
yum install openssl openssl-devel

Find this file /etc/httpd/conf.d/ssl.conf :

Replace all contents:

<VirtualHost *:443>
  DocumentRoot "/var/www/html"
  ServerName www.msllws.top
  SSLEngine on
  SSLCertificateFile /etc/httpd/cert/932538_www.msllws.top_public.crt
  SSLCertificateKeyFile /etc/httpd/cert/932538_www.msllws.top.key
  SSLCertificateChainFile /etc/httpd/cert/932538_www.msllws.top_chain.crt
</VirtualHost>

 
NameVirtualHost *:443

Then you can access https

I hope this article will help you configure your Linux server.

You may also be interested in:
  • Apache https configuration detailed steps
  • Introduction to Apache deployment of https in cryptography

<<:  How to use axios request in Vue project

>>:  Detailed explanation of the idea of ​​installing mysql8.0.11 and changing the root password and connecting navicat for mysql

Recommend

JavaScript modularity explained

Table of contents Preface: 1. Concept 2. The bene...

JavaScript to achieve click image flip effect

I was recently working on a project about face co...

HTML tag ID can be a variable

<table id=" <%=var1%>">, the...

Specific use of routing guards in Vue

Table of contents 1. Global Guard 1.1 Global fron...

A Preliminary Study on Vue Unit Testing

Table of contents Preface Why introduce unit test...

Summary of Linux date command knowledge points

Usage: date [options]... [+format] or: date [-u|-...

How to set up Spring Boot using Docker layered packaging

The Spring Boot project uses docker containers, j...

How to quickly modify the host attribute of a MySQL user

When you log in to MySQL remotely, the account yo...

JavaScript String Object Methods

Table of contents Methods of String Object Method...

SQL merge operation of query results of tables with different columns

To query two different tables, you need to merge ...

Introduction to container of() function in Linux kernel programming

Preface In Linux kernel programming, you will oft...