From ccdb1087d7bfbf02f2bcd09ef84510f4e345a9c4 Mon Sep 17 00:00:00 2001 From: Hyungi Ahn Date: Fri, 13 Mar 2026 18:51:30 +0900 Subject: [PATCH] =?UTF-8?q?fix(sso-auth):=20CORS=20allowedOrigins=EC=97=90?= =?UTF-8?q?=20=EB=88=84=EB=9D=BD=EB=90=9C=20=EC=84=9C=EB=B8=8C=EB=8F=84?= =?UTF-8?q?=EB=A9=94=EC=9D=B8=204=EA=B0=9C=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit tkpurchase, tksafety, tksupport, tkds 서브도메인 누락으로 인한 로그인 실패 수정 Co-Authored-By: Claude Opus 4.6 --- sso-auth-service/index.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sso-auth-service/index.js b/sso-auth-service/index.js index 3da10f8..bf0a200 100644 --- a/sso-auth-service/index.js +++ b/sso-auth-service/index.js @@ -20,6 +20,10 @@ const allowedOrigins = [ 'https://tkreport.technicalkorea.net', 'https://tkqc.technicalkorea.net', 'https://tkuser.technicalkorea.net', + 'https://tkpurchase.technicalkorea.net', + 'https://tksafety.technicalkorea.net', + 'https://tksupport.technicalkorea.net', + 'https://tkds.technicalkorea.net', ]; if (process.env.NODE_ENV === 'development') { allowedOrigins.push('http://localhost:30000', 'http://localhost:30080', 'http://localhost:30180', 'http://localhost:30280', 'http://localhost:30380');