Skip to content

Commit

Permalink
Merge pull request #173 from prgrms-web-devcourse-final-project/featu…
Browse files Browse the repository at this point in the history
…re/infra/SCRUM-194

[Feat] 헬스체크 시큐리티 인증 제외 추가
  • Loading branch information
1mjay authored Dec 8, 2024
2 parents 1cc9e77 + ffc475d commit 7959d66
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,9 @@ SecurityFilterChain apiFilterChain(HttpSecurity http) throws Exception {
// redis 허용
.requestMatchers("/api/v1/redis-test/**").permitAll()

// healthCheck 허용
.requestMatchers("/api/v1/healthcheck").permitAll()

// API 엔드포인트 허용
.requestMatchers(
"/api/v1/member/join",
Expand Down

0 comments on commit 7959d66

Please sign in to comment.