zoukankan      html  css  js  c++  java
  • 腾讯云CentOS Apache开启HTTPS

    1.申请SSL证书

    https://console.qcloud.com/ssl?utm_source=yingyongbao&utm_medium=ssl&utm_campaign=qcloud

    2.配置Linux服务器

    首先安装openssl

    # yum install mod_ssl openssl

    然后将我们第一步生成的SSL上传到服务器

    # cp www.bincoding.cn.crt /etc/pki/tls/certs/
    # cp www.bincoding.cn.key /etc/pki/tls/private/

    进入/etc/pki/tls/private/目录:生成csr文件

    openssl req -new -key www.bincoding.cn.key -out www.bincoding.cn.csr 

    中间需要输入证书信息

    [root@VM_238_215_centos private]# openssl req -new -key www.bincoding.cn.key -out www.bincoding.cn.csr 
    You are about to be asked to enter information that will be incorporated
    into your certificate request.
    What you are about to enter is what is called a Distinguished Name or a DN.
    There are quite a few fields but you can leave some blank
    For some fields there will be a default value,
    If you enter '.', the field will be left blank.
    -----
    Country Name (2 letter code) [XX]:CN
    State or Province Name (full name) []:ChongQing
    Locality Name (eg, city) [Default City]:ChongQing
    Organization Name (eg, company) [Default Company Ltd]:
    Organizational Unit Name (eg, section) []:
    Common Name (eg, your name or your server's hostname) []:
    Email Address []:

    3.配置Apache 服务器

    # vim /etc/httpd/conf.d/ssl.conf
    ### overwrite the following parameters ###
    SSLCertificateFile /etc/pki/tls/certs/www.bincoding.cn.crt
    SSLCertificateKeyFile /etc/pki/tls/private/www.bincoding.cn.key
    
    ### The following parameter does not need to be modified in case of a self-signed certificate. ###
    ### If you are using a real certificate, you may receive a certificate bundle. The bundle is added using the following parameters ###
    SSLCertificateChainFile /etc/pki/tls/certs/example.com.ca-bundle

    然后重启httpd

    # service httpd restart

    重启成功后apache已经支持https了~

  • 相关阅读:
    B站14天数据分析笔记6次课笔记
    B站14天数据分析笔记5次课作业
    B站14天数据分析笔记5次课Pandas
    1037 在霍格沃茨找零钱 (20 point(s))
    第一章:第三节探索性数据分析
    Java没有运行选项
    Eclipse截图的时候错误提示消失/复制粘贴错误信息
    错误记录_css属性的值一定不需要引号么?
    错误记录_语法哪里错了?
    微软输入法使用
  • 原文地址:https://www.cnblogs.com/bincoding/p/5952411.html
Copyright © 2011-2022 走看看