embedded tomcat 8 - Spring-boot Actuator SSL configuration -
i'm developing webapplication spring-boot using embedded tomcat. 1 of requirements of app 2-way ssl (clientauth).
enabling clientauth easy enough use spring-boot actuator management of app on different port without clientauth.
is there clean way this?
(disabling ssl on actuator endpoints enough)
according latest spring docs, can use
management.port=8080 management.ssl.enable=false
in properties configure management ports. see production-ready-management-specific-ssl in spring boot doc more options.
Comments
Post a Comment