Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

前端和后端不同端口 服务器怎么配置代理

前端:
image.png

前端部署到服务器端口:
image.png
后端部署到服务器端口:
image.png

大家帮看看 服务端该怎么配置代理,一直没弄出来 感谢


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.4k views
Welcome To Ask or Share your Answers For Others

1 Answer

前端的baseUrl是api,nginx这样配置

location ^~ /api {
    proxy_pass localhost:3005/api/;
    proxy_set_header Host $host; 
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...