配置Nginx自签名SSL证书,支持HTTPS

配置Nginx自签名SSL证书的流程

  • 生成一个SSL自签名证书
  • 客户端机器信任这个自签名证书
  • 修改RHEL服务器的Nginx配置
  • 在客户机用curl测试HTTPS

生成一个SSL自签名证书

在RHEL服务器上, 用openssl命令生成一个自签名证书

openssl genrsa -out server.key 2048 #生成一个2048位的RSA私钥,保存到server.key
openssl req -x509 -new -nodes -key server.key -sha256 -days 3650 -out server.crt -subj "/C=CN/CN=www.petertest.com/O=MyRootCA" # 使用私钥server.key, 生成一个自签名的根证书server.crt, 有效期10年

注: CN=www.petertest.com需要换成你的服务器域名, 否则curl测试会报错

客户端机器信任这个自签名证书

将server.crt传到客户端Linux机器上。 在RHEL/Centos机器上, 需要把证书传到目录/etc/pki/ca-trust/source/anchors/,再用如下命令更新系统信任的CA证书列表

update-ca-trust

修改RHEL服务器的Nginx配置

修改nginx.conf, 如下:

    server {
        listen 443 ssl;
        server_name www.peter.com; # 设置域名

        access_log   access.log;
        include /etc/nginx/default.d/*.conf;

        ssl_certificate /server.crt; # 指定证书的绝对路径
        ssl_certificate_key /server.key; # 指定私钥的绝对路径

        location / {
            default_type text/html;
            return 200 '<h1>Welcome to Nginx</h1>';
        }
    }

再把证书文件server.crt和私钥文件server.key拷到服务器的根目录下

测试

在客户机用curl测试, 返回200 OK

curl https://www.petertest.com:443 -i
HTTP/1.1 200 OK
Server: nginx/1.20.1
Date: Wed, 11 Dec 2024 14:02:13 GMT
Content-Type: text/html
Content-Length: 25
Connection: keep-alive

<h1>Welcome to Nginx</h1>

参考

https://cloud.tencent.com/developer/article/1743989

相关推荐
第八学期31 分钟前
用Ansible Roles重构LNMP架构(Linux+Nginx+Mariadb+PHP)
linux·nginx·重构·架构·ansible·自动化运维
weixin_425878232 小时前
Nginx 缓存那些事儿:原理、配置和最佳实践
运维·nginx·缓存
Orime小猪4 小时前
CentOS Stream 8 使用 Certbot 配置 HTTPS 证书指南
运维·https
一名技术极客5 小时前
Nginx性能优化全方案:打造一个高效服务器
服务器·nginx·性能优化
stormsha8 小时前
解决 Nginx 部署 React 项目时的重定向循环问题
前端·nginx·react.js
serve the people13 小时前
nginx指令 set_real_ip_from
运维·tcp/ip·nginx
apgk121 小时前
docker 安装 nginx
nginx·docker
007php00721 小时前
php项目的sdk封装成composer包的创建与发版
运维·开发语言·nginx·golang·github·php·composer
AiFlutter1 天前
基于nginx和ffmpeg搭建HTTP FLV流媒体服务器
nginx·http·ffmpeg