在同一服务器和同一端口上运行多个 Grails / Jetty 实例,但主机名不同
我想在同一台服务器上运行几个由 Jetty 提供支持的 Grails 应用程序(但如果需要,我可以将服务器更改为 Tomcat,但我需要 CometD 功能的 Continuations API)。它们都需要位于端口 80 上,但具有不同的域名(myfirstsite.com、mysecondsite.com)
有没有办法以这种方式运行多个应用程序?
I would like to run several Grails applications, powered by Jetty (but I could change the server to Tomcat if needed, however I need the Continuations API for CometD features) on the same server. They all need to be on port 80, but have different domain names (myfirstsite.com, mysecondsite.com)
Is there a way to run several apps this way ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最简单的方法可能是使用 Apache HTTPD 虚拟主机,使用 mod_proxy 连接到 Jetty 或 Tomcat。
The easiest way is probably to use Apache HTTPD virtual hosts, using mod_proxy to connect to Jetty or Tomcat.
在 Jetty 上的不同虚拟主机上运行不同的 Web 应用程序应该不会很复杂< /a>.
It shouldn't be complicated to run different webapps on different virtual hosts on Jetty.