diff --git a/spring-cloud.html b/spring-cloud.html index ea2a781..ea81083 100644 --- a/spring-cloud.html +++ b/spring-cloud.html @@ -1145,8 +1145,9 @@ your application.yml for the Config Server:

encrypt:
   keyStore:
     location: classpath:/server.jks
+    password: letmein
     alias: mytestkey
-    password: letmein
+ secret: changeme @@ -1160,7 +1161,12 @@ need to you can embed it in another application. Just use the to serve the resources under a prefix. The prefix should start but not end with a "/". It is applied to the @RequestMappings in the Config Server (i.e. underneath the Spring Boot prefixes server.servletPath -and server.contextPath).

+and server.contextPath). Another optional property that can be +useful in this case is spring.cloud.config.server.bootstrap which is +a flag to indicate that the server should configure itself from its +own remote repository. The flag is off by default because it can delay +startup, but when embedded in another application it makes sense to +initialize the same way as any other application.

@@ -3486,7 +3492,7 @@ ProxyAuthenticationProperties for full details.