Skip to content

Commit

Permalink
ci/cd: oauth 관련 Url HTTPS 강제
Browse files Browse the repository at this point in the history
  • Loading branch information
toychip committed Jan 22, 2024
1 parent 57163c2 commit 3e13be2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {

http
.requiresChannel(channel -> channel
.requestMatchers("/login/github")
.requiresSecure());
.requestMatchers("/login/github", "/login/oauth/authorize/github")
.requiresSecure());

http
.oauth2Login()
Expand Down

0 comments on commit 3e13be2

Please sign in to comment.