nginx https测试
时间: 2023-05-11 15:07:05 浏览: 134
富锂锰基正极材料行业研究报告 新能源材料技术 富锂锰基正极材料 行业分析 应用
可以使用 OpenSSL 生成自签名证书,然后在 nginx 配置文件中添加 SSL 相关配置,如下所示:
```
server {
listen 443 ssl;
server_name example.com;
ssl_certificate /path/to/cert.pem;
ssl_certificate_key /path/to/key.pem;
location / {
# your server configuration
}
}
```
其中,`/path/to/cert.pem` 和 `/path/to/key.pem` 分别是证书和私钥的路径。在浏览器中访问 `https://example.com` 即可进行测试。
阅读全文