File tree 3 files changed +6
-4
lines changed
java/gdsc/konkuk/platformcore/global/configs
3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 4
4
./gradlew clean bootJar -PexcludeSecrets=true
5
5
6
6
# Docker 이미지 빌드 & 푸시
7
- docker buildx build --platform linux/amd64,linux/arm64 -t ekgns33 /gdsc-spring :latest . --push
7
+ docker buildx build --platform linux/amd64,linux/arm64 -t goldentrash /gdsc-internal :latest . --push
8
8
9
9
# 완료 메시지
10
- echo " Docker image pushed to ekgns33 /gdsc-spring :latest successfully."
10
+ echo " Docker image pushed to goldentrash /gdsc-internal :latest successfully."
Original file line number Diff line number Diff line change @@ -105,8 +105,7 @@ private ClientRegistration googleClientRegistration() {
105
105
.clientSecret (googleOidcConfig .getClientSecret ())
106
106
.clientAuthenticationMethod (ClientAuthenticationMethod .CLIENT_SECRET_BASIC )
107
107
.authorizationGrantType (AuthorizationGrantType .AUTHORIZATION_CODE )
108
- .redirectUri (
109
- "https://{baseHost}{basePort}{basePath}/login/oauth2/code/{registrationId}" )
108
+ .redirectUri ("{baseUrl}/login/oauth2/code/{registrationId}" )
110
109
.scope ("openid" , "profile" , "email" )
111
110
.authorizationUri ("https://accounts.google.com/o/oauth2/v2/auth" )
112
111
.tokenUri ("https://www.googleapis.com/oauth2/v4/token" )
Original file line number Diff line number Diff line change 2
2
servlet :
3
3
session :
4
4
timeout : 1800
5
+ forward-headers-strategy : native
6
+ tomcat :
7
+ redirect-context-root : false
5
8
6
9
spring :
7
10
datasource :
You can’t perform that action at this time.
0 commit comments