Skip to content

Commit

Permalink
ci/cd: login url https apply
Browse files Browse the repository at this point in the history
  • Loading branch information
toychip committed Jan 22, 2024
1 parent e404734 commit 979b78c
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,10 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
, "/api/health"
, "/api/v1/search"
).permitAll()
.anyRequest().authenticated());
// .requiresChannel().anyRequest()
// .requiresSecure();
.anyRequest().authenticated())
.requiresChannel().requestMatchers("/login/**", "/oauth/**")
.requiresSecure();

http
.oauth2Login()
.authorizationEndpoint()
Expand Down

0 comments on commit 979b78c

Please sign in to comment.