在CentOS 7 1804 中 安裝 Apache HTTP Server 並 配置 騰訊雲 SSL
阿新 • • 發佈:2018-11-09
相關連結:
在CentOS 7 1804 中 安裝 Apache HTTP Server 並 配置 阿里雲 SSL
在CentOS 1804 中的 Tomcat 9 設定 SSL( https ) 加密 (多域名加密,阿里雲 SSL+ 騰訊雲 SSL)
在CentOS 1804 中設定 Apache Tomcat 9.0.12 開機自啟
- 安裝httpd:
[[email protected] ~]# yum -y install httpd
- 啟動httpd:
檢視是否啟動:[[email protected] ~]# systemctl start httpd.service
[[email protected] ~]# systemctl status httpd.service
- 設定httpd開機自啟:
檢視是否設定了開機自啟:[[email protected] ~]# systemctl enable httpd.service
[[email protected] ~]# systemctl list-unit-files |grep httpd.service
- 檢視防火牆是否開啟:
開啟防火牆:[[email protected] ~]# systemctl status firewalld
[
- 檢視防火牆是否開機自啟:
開啟防火牆的開機自啟:[[email protected] ~]# systemctl list-unit-files |grep firewalld
[[email protected] ~]# systemctl enable firewalld.service
- 檢視80/443埠是否開放:
開啟80/443埠(需要重啟防火牆):[[email protected] ~]# firewall-cmd --list-ports
重啟防火牆:[
[[email protected] ~]# systemctl restart firewalld.service
- 訪問httpd:
- 安裝mod_ssl:
[[email protected] cert]# yum -y install mod_ssl
- 安裝openssl:
[[email protected] cert]# yum -y install openssl
- 上傳證書:
- 修改ssl配置檔案:
內容如下(指向ssl證書):[[email protected] conf.d]# vim /etc/httpd/conf.d/ssl.conf
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
- 重啟httpd:
[[email protected] conf.d]# systemctl restart httpd.service
- 訪問httpd:
相關連結:
在CentOS 7 1804 中 安裝 Apache HTTP Server 並 配置 阿里雲 SSL
在CentOS 1804 中的 Tomcat 9 設定 SSL( https ) 加密 (多域名加密,阿里雲 SSL+ 騰訊雲 SSL)