在 Nginx 中配置反向代理,将 `https://oa-testminio.yalaw.cn:9001` 的请求转发到 `https://oa-testminio-web.yalaw.cn`,可以按照以下方式配置: ```nginx server { listen 443 ssl; server_name oa-testminio.yalaw.cn; # SSL 配置部分,根据你的证书和私钥文件进行配置 ssl_certificate /path/to/your/certificate.pem; ssl_certificate_key /path/to/your/private.key; ssl_protocols TLSv1.2 TLSv1.3; ssl_ciphers EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH; ssl_prefer_server_ciphers on; ssl_session_cache shared:SSL:10m; ssl_dhparam /path/to/dhparams.pem; # 如果有的话 location / { proxy_pass https://oa-testminio-web.yalaw.cn:443/; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; } } ``` 请确保替换上述配置中的证书路径为你实际的证书和私钥文件路径。请确认 `oa-testminio-web.yalaw.cn` 的服务端口是 443(HTTPS 默认端口)。 这样,当用户访问 `https://oa-testminio.yalaw.cn:9001` 时,Nginx 将请求透明地转发到 `https://oa-testminio-web.yalaw.cn`。 [2024-01-22 16:54:31 | AI写代码神器 | 386点数解答]