问题是这样的:我用Go开发了2个网站(完全不同的网站),例如,www.a.com和www.b.com,现在要把这2个网站同时部署在一台服务器上。但80端口只能一个网站占用。a网站:http.ListenAndServe(":80",nil)b网站:只能用其他端口了http.ListenAndServe(":81",nil)。那么访问b网站,只能www.b.com:81有没有办法同时80端口?请求根据域的不同,声明,这2个网站是完全不同客户的网站,但部署在同一服务器上。或者前端需要加上Nginx来帮助?感谢解答,谢谢
2 回答
森林海
TA贡献2011条经验 获得超2个赞
何必要Nginx或者Apache这么麻烦,Go自己就可以做独立的服务器,虚拟主机自然自己就支持http://golang.org/pkg/net/http/#Serve...ServeMuxisanHTTPrequestmultiplexer.ItmatchestheURLofeachincomingrequestagainstalistofregisteredpatternsandcallsthehandlerforthepatternthatmostcloselymatchestheURL.Patternsmayoptionallybeginwithahostname,restrictingmatchestoURLsonthathostonly.Host-specificpatternstakeprecedenceovergeneralpatterns,sothatahandlermightregisterforthetwopatterns"/codesearch"and"codesearch.google.com/"withoutalsotakingoverrequestsfor"http://www.google.com/".所以,注册handler的时候加上域名即可http.HandleFunc("www.a.com/",handlerFunc)
添加回答
举报
0/150
提交
取消