From 699aa7cfc89b7172d78a04bb8afc658ef1959756 Mon Sep 17 00:00:00 2001 From: chan Date: Fri, 17 Apr 2026 10:03:38 +0900 Subject: [PATCH] =?UTF-8?q?orgFront=20inrp=20=EB=93=B1=EB=A1=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.sample | 1 + docker/staging_pull_compose.template.yaml | 8 ++++++++ 2 files changed, 9 insertions(+) diff --git a/.env.sample b/.env.sample index 89e4daf8..b9781ae5 100644 --- a/.env.sample +++ b/.env.sample @@ -141,3 +141,4 @@ VITE_OIDC_CLIENT_ID=devfront VITE_OIDC_AUTHORITY=https://sso.hmac.kr/oidc DEVFRONT_URL=http://localhost:5174 DEVFRONT_CALLBACK_URLS=http://localhost:5174/auth/callback,https://sso.hmac.kr/devfront/auth/callback +ORGFRONT_CALLBACK_URLS=http://localhost:5175/auth/callback,http://172.16.10.176:5175/auth/callback \ No newline at end of file diff --git a/docker/staging_pull_compose.template.yaml b/docker/staging_pull_compose.template.yaml index 9e059e5a..d777511a 100644 --- a/docker/staging_pull_compose.template.yaml +++ b/docker/staging_pull_compose.template.yaml @@ -304,6 +304,14 @@ services: --token-endpoint-auth-method none \ --redirect-uri "$${DEVFRONT_CALLBACK_URLS:-http://localhost:5174/auth/callback}" + upsert_client "orgFront" \ + --name "OrgFront" \ + --grant-type authorization_code,refresh_token \ + --response-type code \ + --scope openid,offline_access,profile,email \ + --token-endpoint-auth-method none \ + --redirect-uri "$${DEVFRONT_CALLBACK_URLS:-http://localhost:5175/auth/callback,http://172.16.10.176:5175/auth/callback}" + upsert_client "$${OATHKEEPER_INTROSPECT_CLIENT_ID:-oathkeeper-introspect}" \ --secret "$${OATHKEEPER_INTROSPECT_CLIENT_SECRET:-oathkeeper-secret}" \ --grant-type client_credentials \