Skip to content

Commit

Permalink
Feat: JWT 발급 리다이렉트 URI 를 외부 주입으로 변경 (#181)
Browse files Browse the repository at this point in the history
* #180 - chore: JWT 발급 리다이렉트 URI를 외부 주입으로 변경 (#181)
  • Loading branch information
morenow98 committed Feb 22, 2024
1 parent ce418e8 commit 5008271
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ jobs:
cloud.aws.credentials.access-key: ${{ secrets.S3_PROFILE_ACCESS_KEY }}
cloud.aws.credentials.secret-key: ${{ secrets.S3_PROFILE_SECRET_KEY }}
profile.default.url: ${{ secrets.PROFILE_DEFAULT_URL }}
oauth.authorizedRedirectUri: ${{ secrets.AUTHORIZED_REDIRECT_URI }}

- name: Grant execute permission for gradlew
run: chmod +x ./gradlew
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/application-oauth.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ spring:
token-uri: https://nid.naver.com/oauth2.0/token

oauth:
authorizedRedirectUri: http://localhost:3000/login/redirected
authorizedRedirectUri: ${AUTHORIZED_REDIRECT_URI}

0 comments on commit 5008271

Please sign in to comment.