ruoyi 前后分离部署502
我使用了nginx部署前端,使用docker部署。nginx文件如下:
server {
listen 8086; #设置端口
listen [::]:8086; #设置端口
server_name localhost;
#access_log /var/log/nginx/host.access.log main;
location / {
root /home/ruoyi/projects/ruoyi-ui;
try_files $uri $uri/ /index.html;
index index.html index.htm;
}
服务器托管网location /prod-api/{
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote服务器托管网_addr;
proxy_set_header REMOTE-HOST $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://localhost:8080/; #设置监控后端启动的端口
}
}
左看右看自己没写错,一直报502错误
最后排查发现是自己后端代理那里不能写localhost,换上实实在在的ip吧
服务器托管,北京服务器托管,服务器租用 http://www.fwqtg.net
相关推荐: 40. 干货系列从零用Rust编写负载均衡及代理,websocket的实现
wmproxy wmproxy已用Rust实现http/https代理, socks5代理, 反向代理, 静态文件服务器,四层TCP/UDP转发,七层负载均衡,内网穿透,后续将实现websocket代理等,会将实现过程分享出来,感兴趣的可以一起造个轮子 项目地…