Skip to content

Commit f4ef1df

Browse files
authored
FU-364 feature: 헬스체크 경로 오픈 (#96)
1 parent 3d41cde commit f4ef1df

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/main/java/com/foru/freebe/config/SecurityConfig.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti
3737
.addFilterBefore(jwtExceptionFilter, LogoutFilter.class)
3838

3939
.authorizeHttpRequests((request) -> request
40+
.requestMatchers("/actuator/health", "/actuator/health/**").permitAll()
4041
.requestMatchers("/photographer/join").hasAnyRole("PHOTOGRAPHER_PENDING")
4142
.requestMatchers("/photographer/**").hasAnyRole("PHOTOGRAPHER")
4243
.requestMatchers("/customer/product/**").permitAll()

0 commit comments

Comments
 (0)