centOS7 apache ssl證書安裝配置

2022-08-19 11:57:11 字數 1639 閱讀 4085

背景說明:伺服器是centos7.4 七牛申請的免費ssl證書

預設apache是沒有安裝ssl模組的,所以需要安裝,接著使用命令:

yum install -y mod_ssl

apache目錄 /usr/local/apache/

再 listen 80下面新增一行

listen 443

找到 #loadmodule ssl_module modules/mod_ssl.so 和 #include conf/extra/httpd-ssl.conf,去掉前面的#號注釋;

先將要修改的檔案備份是個好習慣。

編輯apache根目錄下 conf/extra/httpd-ssl.conf 檔案,修改如下內容:

documentroot "/data/www/default"

servername ding.com

serveralias www.ding.com

#allowoverride偽靜態

allowoverride all

require all granted

sslengine on

sslcertificatefile /usr/local/apache/conf/ssl/www.ding.com.cer

sslcertificatekeyfile /usr/local/apache/conf/ssl/www.ding.com.key

sslcertificatechainfile /usr/local/apache/conf/ssl/www.ding.com_ca.crt

配置完成後,重新啟動 apache 就可以使用來訪問了。

sslcertificatefile /usr/local/apache/conf/2_www.domain.com_cert.crt

sslcertificatekeyfile /usr/local/apache/conf/3_www.domain.com.key

sslcertificatechainfile /usr/local/apache/conf/1_root_bundle.crt

如果要強制**使用https,httpd-vhost.conf檔案配置如下:

servername localhost

serveralias localhost

documentroot /data/www/default

setoutputfilter deflate

options followsymlinks

allowoverride all

order deny,allow

require all granted

directoryindex index.php index.html index.htm

#強制http轉向為https

centos7 安裝centos桌面

一 輸入命令 yum groupinstall gnome desktop graphical administration tools 二 設定系統啟動等級。systemctl get default 獲取當前系統執行形式,會顯示multi user.target 命令列終端 或者 graphic...

7 centos7 使用者管理

useradd meng如果建立使用者時沒有指定屬於哪個組,則缺省會建立乙個名字與使用者相同的組並歸屬於此組 對應的home目錄下回建立乙個meng的資料夾 passwd meng 之後會提示輸入密碼 userdel meng 刪除使用者,會保留home檔案 userdel r meng 刪除使用者...

centos7 r語言安裝 centOS7安裝R

在安裝時發現一般教程中說的 yum install r 這個命令不管用了啊,然後去官網了解了一波 發現官網上表示r語言已經屬於epel倉庫管理了。1.安裝epel倉庫 yum install epel release 隨後報錯 這是由於centos7自帶的python版本為2.7,因此要將該檔案的p...