From 07727c515d33acd9457a9721afe53d5206447a12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9D=B4=EC=84=9D=EB=B2=94?= Date: Thu, 12 Feb 2026 18:32:05 +0900 Subject: [PATCH 1/2] =?UTF-8?q?Feat:=20=EC=9D=B4=EB=AF=B8=EC=A7=80=20?= =?UTF-8?q?=EC=84=9C=EB=B9=84=EC=8A=A4=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/resources/application.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index eb351dd..bdc1273 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -48,6 +48,17 @@ spring: filters: - AuthenticationFilter + - id: image-private + uri: http://image-service:8082 + predicates: + - name: Path + args: + patterns: + - /v1/images/** + - "!/v1/images/upload" + filters: + - AuthenticationFilter + jwt: secret: ${JWT_SECRET} From 750b82cdcd87dda92aabecd22c53f65f9c7ecc76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9D=B4=EC=84=9D=EB=B2=94?= Date: Thu, 12 Feb 2026 18:39:40 +0900 Subject: [PATCH 2/2] =?UTF-8?q?Feat:=20=EC=9D=B4=EB=AF=B8=EC=A7=80=20?= =?UTF-8?q?=EC=84=9C=EB=B9=84=EC=8A=A4=20=EB=B6=84=EB=A6=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/resources/application.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index bdc1273..34ef942 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -48,14 +48,15 @@ spring: filters: - AuthenticationFilter + - id: image-public + uri: http://image-service:8082 + predicates: + - Path=/v1/images/upload + - id: image-private uri: http://image-service:8082 predicates: - - name: Path - args: - patterns: - - /v1/images/** - - "!/v1/images/upload" + - Path=/v1/images/** filters: - AuthenticationFilter