Skip to content

Commit

Permalink
chore: healthy check API 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
GiHwan2 committed Nov 22, 2024
1 parent e0e9972 commit ead55de
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/com/ivory/ivory/config/ProdSecurityConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
.authorizeHttpRequests(auth -> auth
.requestMatchers(
"/swagger-ui/**",
"/v3/api-docs/**"
"/v3/api-docs/**",
"/actuator/health"
).permitAll()
.requestMatchers("/api/v1/auth/**","/api/v1/apply/payments/**").permitAll()
.anyRequest().authenticated()
Expand Down

0 comments on commit ead55de

Please sign in to comment.