From f2a74946af7e5eb9b0344cac33065fd21072511f Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Tue, 22 Aug 2017 10:20:20 +0200 Subject: [PATCH] Polish --- .../src/main/asciidoc/appendix-application-properties.adoc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc b/spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc index 76c0e1b1b6..99b72f9469 100644 --- a/spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc +++ b/spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc @@ -1215,8 +1215,6 @@ content into your application; rather pick only the properties that you need. management.add-application-context-header=false # Add the "X-Application-Context" HTTP header in each response. management.address= # Network address that the management endpoints should bind to. management.context-path= # Management endpoint context-path. For instance `/actuator` - management.cloudfoundry.enabled= # Enable extended Cloud Foundry actuator endpoints - management.cloudfoundry.skip-ssl-validation= # Skip SSL verification for Cloud Foundry actuator endpoint security calls management.port= # Management endpoint HTTP port. Uses the same port as the application by default. Configure a different port to use management-specific SSL. management.security.enabled=true # Enable security. management.security.roles=ACTUATOR # Comma-separated list of roles that can access the management endpoint. @@ -1237,6 +1235,10 @@ content into your application; rather pick only the properties that you need. management.ssl.trust-store-provider= # Provider for the trust store. Requires a custom management.port. management.ssl.trust-store-type= # Type of the trust store. Requires a custom management.port. + # CLOUDFOUNDRY + management.cloudfoundry.enabled=true # Enable extended Cloud Foundry actuator endpoints. + management.cloudfoundry.skip-ssl-validation=false # Skip SSL verification for Cloud Foundry actuator endpoint security calls. + # HEALTH INDICATORS management.health.db.enabled=true # Enable database health check. management.health.cassandra.enabled=true # Enable cassandra health check.