nignx伺服器SSL證書安裝部署

2021-09-24 14:13:00 字數 1048 閱讀 4475

獲取伺服器證書檔案

2. 安裝伺服器證書 複製 server.key、server.crt 檔案到 nginx 安裝目錄下的 conf 目錄。

開啟 nginx 安裝目錄下 conf 目錄中的 nginx.conf 檔案

找到 # https server

#server {

# listen 443;

# server_name localhost;

# ssl on;

# ssl_certificate cert.crt;

# ssl_certificate_key cert.key;

# ssl_session_timeout 5m;

# ssl_protocols sslv2 sslv3 tlsv1;

# ssl_ciphers all:!adh:!export56:rc4+rsa:+high:+med ium:+low:+sslv2:+exp;

# ssl_prefer_server_ciphers on;

# location / {

# root html;

# index index.html index.htm;

將其修改為

server { listen 443;

server_name localhost;

ssl on; ssl_certificate server.crt;

ssl_certificate_key server.key;

ssl_session_timeout 5m;

ssl_protocols tlsv1 tlsv1.1 tlsv1.2;

ssl_ciphers ecdh:aesgcm:high:!rc4:!dh:!md5:!anull:!enull;

ssl_prefer_server_ciphers on;

location / {

root html;

index index.html index.htm;

儲存退出,並重啟 nginx。 通過 https 方式訪問您的站點,測試站點證書的安裝配置。

Nginx伺服器安裝SSL證書

以阿里雲伺服器為例,找到證書位置 pem檔案 是證書檔案。key檔案 證書的私鑰檔案 申請證書時如果沒有選擇自動建立csr,則沒有該檔案 把這兩個檔案放在你伺服器的指定某資料夾下 最好是你nginx檔案位置,方便管理 開啟你的nginx.conf 配置 server再重新啟動nginx 我的是 ng...

Apache伺服器安裝SSL證書

以apache標準配置為例,假如證書檔名是a public.crt,證書鏈檔案是a chain.crt,私鑰檔案是a.key。開啟 apache 安裝目錄下 conf 目錄中的 httpd.conf 檔案,找到以下內容並去掉 loadmodule ssl module modules mod ssl...

Apache伺服器SSL證書安裝https

apache伺服器ssl證書安裝https 2020 2 9 1 如果無 etc httpd ssl 目錄,可通過 命令列建立,再進行第二步。2 如果有 etc httpd ssl 目錄,將已獲取到的1 root bundle.crt證書檔案 2 www.cloud.com.crt證書檔案以及3 w...