From 1ad52b651ac8523c8feac44e6f82182d29e6619a Mon Sep 17 00:00:00 2001 From: Madhura Bhave Date: Fri, 22 Mar 2019 15:17:34 -0700 Subject: [PATCH] Document using the same port for the management server on CF Closes gh-15640 --- .../src/main/asciidoc/production-ready-features.adoc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/spring-boot-project/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc b/spring-boot-project/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc index f98df9e8fa2..1c39a650285 100644 --- a/spring-boot-project/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc +++ b/spring-boot-project/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc @@ -1136,6 +1136,10 @@ the following example: management.server.port=8081 ---- +NOTE: On Cloud Foundry, applications only receive requests on port 8080 for both HTTP and TCP +routing, by default. If you want to use a custom management port on Cloud Foundry, you will need +to explicitly set up the application's routes to forward traffic to the custom port. + [[production-ready-management-specific-ssl]]