1、首先修改httpd.conf 檔案
#loadmodule socache_shmcb_module modules/mod_socache_shmcb.so
去掉 「#「號
#loadmodule ssl_module modules/mod_ssl.so
去掉 「#「號
儲存,上傳到伺服器中
2、修改 httpd-ssl.conf 檔案
分別指定下面的內容
sslcertificatefile "/alidata/server/httpd/conf/server.crt" (web伺服器證書路徑)
sslcertificatekeyfile "/alidata/server/httpd/conf/server.key" (申請證書時生成的秘鑰檔案路徑)
sslcertificatechainfile "/alidata/server/httpd/conf/server-ca.crt"(web伺服器中級證書路徑)
首先 停止
apachectl -k stop
apachectl -k start
netstat -tanp 檢視是否有443埠開啟
ngnix配置ssl證書(centOS)
2800315.key 2800315.pem 在ngnix安裝目錄下 usr local nginx conf 新建cert目錄,把上面兩個檔案放在cert目錄下。2 新增ssl模組 我當時安裝編譯ngnix 時沒有安裝ssl這個模組,因為配置ssl證書需要此模組。所以 第一步 在 opt ng ...
apache 配置ssl服務 證書
lz今天配置了一整天,看著官方教程來各種錯誤。連apache都啟動不了 1 各種埠占用 2 無名錯誤。其實按著官方文件來就差不多了,要懂得看錯誤,這裡附上官方文件 接下來開始配置 1.啟動apache命令 systemctl start httpd.service 注意不是 service http...
centos安裝nginx並配置SSL證書
安裝nginx的命令 sudo yum install epel release sudo yum install nginx讓nginx隨系統啟動而啟動 sudo systemctl enable nginx常用命令 啟動 nginx 停止 nginx s stop 過載配置 nginx s re...