本文共 429 字,大约阅读时间需要 1 分钟。
1.安装nginx时需配置特定模块
在安装nginx时,确保启用http_ssl_module模块。如果未启用,可能会出现如“unknown directive ‘ssl’”的错误提示。安装时可以通过以下命令启用所需模块:
./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module
2.生成证书的步骤
进入nginx配置文件目录:
$ cd /usr/local/nginx/conf
生成私钥:
$ openssl genrsa -des3 -out server.key 1024
生成证书请求文件:
$ openssl req -new -key server.key -out server.csr
生成证书:
$ openssl req -x509 -days 3650 -key server.key
转载地址:http://jkjfk.baihongyu.com/