I've got a Spring Boot 2 app that initially used the embedded Tomcat to run. Having Actuator included in the project, I could do
curl 'http://localhost:8080/actuator/health'
and get a response.
Now I've moved the app into a WAR file to be deployed into an external Tomcat (8.2.23), and the actuator endpoint is no longer found. The app itself still works, but I can't get to the exposed actuator endpoints.
Is this a known bug ('feature'?), or is there a special configuration needed? I'm not currently trying to define any new actuator endpoints. I also don't have security included.