I have different (classical) webapps running on Tomcats, which run on different ports.
In front I am running a Apache Webserver passing the requests to the tomcats through (mod_jk).
Apache httpd is running on port 80.
Well my idea was, to write some web applications with vert.x running on another available port and reuse the Apache proxy.
I played around a little bit with mod_proxy on Apache. That works fine as long I don't use socketjs/eventbus stuff in the vertx-webapp.
But using that is essential to me, because the eventbus is a hot feature.
So how do i solve that problem?
Is it even possible to replace the Apache httpd with vertx-proxy listening to port 80 passing the requests to the tomcat/vert.x applications.
Is this a good idea? Or is there another possibilty?
Thx.