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

Categories

0 votes
1.6k views
in Technique[技术] by (71.8m points)

spring boot 多个域名绑定

spring boot项目有前端,客户端,管理端,每个端用的二级域名不同,请问这个要怎么实现


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

springboot启动后只会监听端口,不会区分域名。
一般服务都会用nginx做负载均衡,由nginx负责识别域名并分配到对应的springboot服务的ip端口上。

如果是要在一个项目中支持,可以把域名都指定到这个springboot服务的ip端口,通过第一级location划分,例如aaa.xxx.com/pc/xxx;bbb.xxx.com/app/xxx

如果是多个项目,那么通过nginx把对应域名分配到对应的springboot服务上就行了


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...