2

I am used to setup a reverse proxy in front of application servers like Node or Tomcat. Now I am required to use JBoss Enterprise Application Platform, but I don't know the platform. Is it advisable to deploy Nginx/Apache HTTP as reverse proxy in front of it?

Thanks in advance

Eneko
  • 123
  • 4

1 Answers1

1

JBoss EAP uses Undertow as internal web server and it supports Reverse Proxy functionalities.

Red Hat documentation is accessible to partners and customers only, but you can dive into Wildfly Documentation, which is an upstream version of JBoss EAP.

That being said, I strongly suggest to perform a load test on your Reverse Proxy implementation based on your load expectation, because Undertow can performing less than an Nginx or Apache mod_proxy which are made for this very scope.

oldgiova
  • 436
  • 2
  • 5