nginx ssl配置

A 2-post collection
3 个月前

nginx+certbot申请免费ssl证书并自动续签

nginx ssl配置   免费ssl证书  

一、安装并配置ssl 1、安装 certbot yum install -y epel-release yum install -y certbot 2、执行申请命令 certbot certonly --webroot -w [站点目录] -d [域名] -m [联系人email] --agree-tos 3、申请成功后,会在/etc/letsencrypt/live/{域名}/下生…

9 年前

OpenSSL创建自签名SSL证书及Nginx配置

ssl自签名证书   nginx ssl配置   运维技术  

一、例如给test.imdst.com创建自签名证书 创建根证书的私匙 openssl genrsa -out test.imdst.com.key 2048 利用私钥创建签名请求 openssl req -new -subj "/C=US/ST=GuangDong/L=GuangZhou/O=Your Company Name/OU=imdst.com/CN=test.imdst.com"…