Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> Linux教程 >> Linux下使用openssl生成SSL證書 供nginx使用基礎教程

Linux下使用openssl生成SSL證書 供nginx使用基礎教程

日期:2017/2/7 14:25:58      編輯:Linux教程
  這裡說下Linux 系統怎麼通過openssl命令生成 證書。

 

首先執行如下命令生成一個4096位的key

openssl genrsa -des3 -out hupohost.key 4096
然後他會要求你輸入這個key文件的密碼。不推薦輸入。因為以後要給nginx使用。每次reload nginx配置時候都要你驗證這個PAM密碼的。

 

由於生成時候必須輸入密碼。你可以輸入後 再刪掉

mv ssl.key xxx.key
openssl rsa -in xxx.key -out hupohost.key
rm -rm xxx.key

 

然後根據這個key文件生成證書請求文件

openssl req -new -key hupohost.key -out hupohost.csr
以上命令生成時候要填很多東西 一個個看著寫吧(可以隨便,畢竟這是自己生成的證書)

 

最後根據這2個文件生成crt證書文件

openssl x509 -req -days 3650 -in hupohost.csr -signkey hupohost.key -out hupohost.crt
這裡3650是證書有效期 推薦3650哈哈。這個大家隨意。最後使用到的文件是key和crt文件。

 

如果需要用pfx 可以用以下命令生成
openssl pkcs12 -export -inkey hupohost.key -in hupohost.crt -out hupohost.pfx

 

在需要使用證書的nginx配置文件的server節點裡加入以下配置就可以了

ssl on;
ssl_certificate /home/hupohost.crt;
ssl_certificate_key /home/hupohost.key;
ssl_session_timeout 5m;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP;
ssl_prefer_server_ciphers on;
然後重啟nginx就大功告成了

 

最重要的是,訪問是https進行訪問

server{
listen 443;
ssl on;
ssl_certificate /usr/local/nginx/conf/vhost/ssl/hupohost.crt;
ssl_certificate_key /usr/local/nginx/conf/vhost/ssl/hupohos.key;}
端口一定是443端口
Copyright © Windows教程網 All Rights Reserved