请为https://microservice.ghy.com.cn/stage-api/logistics/添加nginx反向代理
时间: 2023-07-14 20:56:22 浏览: 91
Nginx 反向代理
好的,下面是一个添加反向代理的示例:
```nginx
server {
listen 80;
server_name microservice.ghy.com.cn;
# 重定向所有的HTTP请求到HTTPS
return 301 https://$host$request_uri;
}
server {
listen 443 ssl;
server_name microservice.ghy.com.cn;
# SSL证书相关配置
ssl_certificate /path/to/cert.pem;
ssl_certificate_key /path/to/cert.key;
location /stage-api/logistics/ {
proxy_pass http://localhost:8080/; # 将请求转发到后端服务器,这里假设后端服务器监听8080端口
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
}
```
这个配置将会把 `https://microservice.ghy.com.cn/stage-api/logistics/` 的请求转发到本地的8080端口。你需要将 `ssl_certificate` 和 `ssl_certificate_key` 配置为正确的SSL证书路径。
阅读全文