Nginx 安装参考:
server {
listen 443 ssl http2;
server_name docker.example.com;
ssl_certificate /usr/local/openresty/nginx/conf/ssl/hub.example.cn.crt;
ssl_certificate_key /usr/local/openresty/nginx/conf/ssl/hub.example.cn.key;
location / {
proxy_pass http://192.168.1.2:5080;
}
}
腾讯云SSL 证书使用文件参考
ssl_certificate /path/to/domain_name.com_bundle.crt;
ssl_certificate_key /path/to/domain_name.com.key;
http://blog.xqlee.com/article/2502281225329055.html