Welcome to OGeek Q&A 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 Reply

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服务上就行了


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...