From 70552a9998eecaf3d590ae527a7a758334be85e1 Mon Sep 17 00:00:00 2001 From: Spring Operator Date: Wed, 20 Mar 2019 15:27:48 -0500 Subject: [PATCH] URL Cleanup This commit updates URLs to prefer the https protocol. Redirects are not followed to avoid accidentally expanding intentionally shortened URLs (i.e. if using a URL shortener). # Fixed URLs ## Fixed But Review Recommended These URLs were fixed, but the https status was not OK. However, the https status was the same as the http request or http redirected to an https URL, so they were migrated. Your review is recommended. * [ ] http://user:password@localhost:8888 (UnknownHostException) with 1 occurrences migrated to: https://user:password@localhost:8888 ([https](https://user:password@localhost:8888) result UnknownHostException). # Ignored These URLs were intentionally ignored. * http://localhost with 2 occurrences --- src/main/resources/bootstrap.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/bootstrap.yml b/src/main/resources/bootstrap.yml index d60a299..bad9419 100644 --- a/src/main/resources/bootstrap.yml +++ b/src/main/resources/bootstrap.yml @@ -3,4 +3,4 @@ spring: name: locks cloud: config: - uri: ${vcap.services.${PREFIX:}configserver.credentials.uri:http://user:password@localhost:8888} + uri: ${vcap.services.${PREFIX:}configserver.credentials.uri:https://user:password@localhost:8888}