I'm developing a webapplication with Spring-boot using embedded tomcat. One of the requirements of this app is 2-way SSL (clientAuth).
Enabling ClientAuth is easy enough however we also like to use spring-boot Actuator for management of the app on a different port without clientAuth.
Is there is a clean way to do this?
(Disabling SSL on the actuator endpoints would also be enough)
org.springframework.boot.actuate.autoconfigure.EndpointWebMvcChildContextConfiguration
i see aServerProperties
is injected From the beanFactory, but my Spring experience is too limited to work out how/if i can influence this which bean is actualy injected there, or how i could get a hold of the bean to configure it. – pvgoddijn