CentOS 6.7下nginx SSL證書部署的方法

03ngnntds發表於2019-03-30

這篇文章主要介紹了在CentOS 6.7下nginx SSL證書部署的方法,文中介紹的非常詳細,需要的朋友可以參考借鑑,下面來一起看看吧。
環境

系統環境:CentOS6.7

nginx version: nginx/1.8.1

證書

ls /opt/nginx/conf/sslqingkang.me.crt # 公鑰qingkang.me.key # 私鑰

配置

vim nginx.conf
找到以下內容

HTTPS server##server {# listen 443 ssl;# server_name localhost;# ssl_certificate cert.pem;# ssl_certificate_key cert.key;# ssl_session_cache shared:SSL:1m;# ssl_session_timeout 5m;# ssl_ciphers HIGH:!aNULL:!MD5;# ssl_prefer_server_ciphers on;# location / {# root html;# index index.html index.htm;# }#}

修改為:

server { listen 443 ssl; server_name  ; ssl_certificate ssl/qingkang.me.crt; ssl_certificate_key ssl/qingkang.me.key; ssl_session_cache shared:SSL:1m; ssl_session_timeout 5m; ssl_ciphers  HIGH:!aNULL:!MD5; ssl_prefer_server_ciphers on; location / { root html; index index.html index.htm; } }
檢查配置

/opt/nginx/sbin/nginx -t
重啟Nginx生效

/opt/nginx/sbin/nginx -s reload


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69911024/viewspace-2639831/,如需轉載,請註明出處,否則將追究法律責任。

相關文章