From 11841a6057e9f5dbcbd221556f81d0ac1bfb7973 Mon Sep 17 00:00:00 2001
From: Julian Horner <julianhorner@web.de>
Date: Thu, 2 Jan 2020 14:10:24 +0100
Subject: [PATCH] Improve comments in application.yml

---
 src/main/resources/application.yml | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml
index 2c52666..785e287 100644
--- a/src/main/resources/application.yml
+++ b/src/main/resources/application.yml
@@ -8,8 +8,7 @@ server:
 eureka:
   client:
     serviceUrl:
-      defaultZone: http://localhost:8761/eureka/ 
-      # URL of the eureka server necessary for client registration
+      defaultZone: http://localhost:8761/eureka/ # URL of the eureka server for registration
       
 zuul:
   ignoredPatterns: /login/** # The login path is served by the api-gateway directly
@@ -22,4 +21,4 @@ zuul:
       path: /auth/**
       service-id: auth-service
       strip-prefix: false # Forward the request all together with the auth path
-      sensitive-headers: Cookie, Set-Cookie # Avoid to send cookies to external entities
\ No newline at end of file
+      sensitive-headers: Cookie, Set-Cookie # Avoid to send internal cookies to external entities
\ No newline at end of file
-- 
GitLab