欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  网络运营

Linux环境下Apache开启https服务的方法详解

程序员文章站 2022-07-09 17:02:14
本文实例讲述了linux环境下apache开启https服务的方法。分享给大家供大家参考,具体如下: 首先申请ssl证书,以阿里云为例,找到域名管理: 免费开启ss...

本文实例讲述了linux环境下apache开启https服务的方法。分享给大家供大家参考,具体如下:

首先申请ssl证书,以阿里云为例,找到域名管理:

Linux环境下Apache开启https服务的方法详解

免费开启ssl证书:

Linux环境下Apache开启https服务的方法详解

配置单域名免费证书:(有效期一年)

Linux环境下Apache开启https服务的方法详解

点击确定,验证证书:

Linux环境下Apache开启https服务的方法详解

审核成功后可以下载证书:

Linux环境下Apache开启https服务的方法详解

下载apache的ssl证书:

Linux环境下Apache开启https服务的方法详解

解压出来这三个我放到了apache安装目录/etc/httpd/cert下面

Linux环境下Apache开启https服务的方法详解

httpd.conf 里面加这个(引入conf.d文件夹下面的全部conf):

include conf.d/*.conf

运行这两个:

yum install mod_ssl
yum install openssl openssl-devel

找到这个文件 /etc/httpd/conf.d/ssl.conf

Linux环境下Apache开启https服务的方法详解

替换全部内容:

<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

然后就可以访问https了

希望本文所述对大家linux服务器配置有所帮助。