Skip to content

Commit

Permalink
feat: health check를 위한 루트 경로 permitAll() 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
bflykky committed Jul 31, 2024
1 parent 6806141 commit 88f4db1
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
.disable()
)
.authorizeHttpRequests(authorize -> authorize
.requestMatchers("/").permitAll()
.requestMatchers("/auth/**").permitAll()
.requestMatchers("/error/**").permitAll()
.requestMatchers(
Expand Down

0 comments on commit 88f4db1

Please sign in to comment.