This doc page: http://docs.spring.io/spring-boot/docs/current/reference/html/production-ready-monitoring.html has the example: ``` management.port=8080 management.ssl.enable=true management.ssl.key-store=classpath:management.jks management.ssl.key-password=secret ``` in my testing, the 'enable' property should be documented as 'enabled', as in: ``` management.port=8080 management.ssl.enabled=false ``` to match the field in this bean: https://github.com/spring-projects/spring-boot/blob/master/spring-boot/src/main/java/org/springframework/boot/context/embedded/Ssl.java