From 7161ec92cea01e83609d6f1ba390a232fb108f3c Mon Sep 17 00:00:00 2001 From: Dave Syer Date: Wed, 11 Mar 2015 10:37:47 +0000 Subject: [PATCH] Sync docs from master to gh-pages --- spring-cloud.html | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) 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.