1. 程式人生 > >在CentOS 7 1804 中 安裝 Apache HTTP Server 並 配置 騰訊雲 SSL

在CentOS 7 1804 中 安裝 Apache HTTP Server 並 配置 騰訊雲 SSL

相關連結:

在CentOS 7 1804 中 安裝 Apache HTTP Server 並 配置 阿里雲 SSL

在CentOS 1804 中的 Tomcat 9 設定 SSL( https ) 加密 (多域名加密,阿里雲 SSL+ 騰訊雲 SSL)

在CentOS 1804 中設定 Apache Tomcat 9.0.12 開機自啟

在tomcat中設定http自動跳轉https


  1. 安裝httpd:
    [[email protected] ~]# yum -y install httpd
    
  2. 啟動httpd:
    [[email protected] ~]# systemctl start httpd.service
    檢視是否啟動:
    [[email protected] ~]# systemctl status httpd.service
  3. 設定httpd開機自啟:
    [[email protected] ~]# systemctl enable httpd.service 
    檢視是否設定了開機自啟:
    [[email protected] ~]# systemctl list-unit-files |grep httpd.service
  4. 檢視防火牆是否開啟:
    [[email protected] ~]# systemctl status firewalld
    開啟防火牆:
    [
    [email protected]
    ~]# systemctl start firewalld
  5. 檢視防火牆是否開機自啟:
    [[email protected] ~]# systemctl list-unit-files |grep firewalld
    開啟防火牆的開機自啟:
    [[email protected] ~]# systemctl enable firewalld.service
  6. 檢視80/443埠是否開放:
    [[email protected] ~]# firewall-cmd --list-ports
    開啟80/443埠(需要重啟防火牆):
    [
    [email protected]
    ~]# firewall-cmd --zone=public --add-port=80/tcp --permanent [[email protected] ~]# firewall-cmd --zone=public --add-port=443/tcp --permanent
    重啟防火牆:
    [[email protected] ~]# systemctl restart firewalld.service
  7. 訪問httpd:

     
  8. 安裝mod_ssl:
    [[email protected] cert]# yum -y install mod_ssl
  9. 安裝openssl:
    [[email protected] cert]# yum -y install openssl
  10. 上傳證書:

     
  11. 修改ssl配置檔案:
    [[email protected] conf.d]# vim /etc/httpd/conf.d/ssl.conf
    內容如下(指向ssl證書):
    SSLCertificateFile /etc/httpd/cert/2_https.wimcn.cn.crt
    SSLCertificateKeyFile /etc/httpd/cert/3_https.wimcn.cn.key
    SSLCACertificateFile /etc/httpd/cert/1_root_bundle.crt
  12. 重啟httpd:
    [[email protected] conf.d]# systemctl restart httpd.service
  13. 訪問httpd:

相關連結:

在CentOS 7 1804 中 安裝 Apache HTTP Server 並 配置 阿里雲 SSL

在CentOS 1804 中的 Tomcat 9 設定 SSL( https ) 加密 (多域名加密,阿里雲 SSL+ 騰訊雲 SSL)

在CentOS 1804 中設定 Apache Tomcat 9.0.12 開機自啟

在tomcat中設定http自動跳轉https