使用 Jetty 为 Web 应用程序提供服务
我第一次使用 Jetty 来部署连接到 Restlet API 的 GWT Web 应用程序,我试图了解使用它的最佳方法。
我想使其可嵌入,以便我可以在运行时更新配置(允许我添加新的域名等)。
我们的 Web 服务器当前运行 Apache 来为 PHP Web 应用程序提供服务,这将是我们第一次部署 GWT 应用程序并使用 Jetty。
是否可以将 Jetty 与 Apache 并行使用(两者都在端口 80 上提供请求),并且由于我嵌入了它,所以我是否可以在 Apache 到达 Jetty 之前使用它?那么 Apache 接收请求并转发到 Jetty 吗?
I am using Jetty for the first time to deploy a GWT web app connecting to a Restlet API and I am trying to understand the best way to use it.
I want to make it embeddable so that I can update config during run-time (allowing me to add new domain names etc).
Our web server currently runs Apache to serve a PHP web app and this will be our first time deploying a GWT app and using Jetty.
Is it possible to use Jetty in parallel with Apache (both serving requests on port 80) and since I am embedding it do I use Apache before it reaches Jetty? So Apache receives request and forwards to Jetty?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
两个服务器不能在同一端口上运行。但您可以在同一台机器上运行两者。因此,为码头使用单独的端口。
Jetty通过自己的端口接收请求,不依赖于其他服务器。
Both server cannot run on same port. But you can run both on same machine. So use a separate port for jetty.
Jetty receives the request through its own port and doesn't depend on other server.