Skip to content

Commit 258d2ab

Browse files
committed
deploy: 로그 모니터링을 위한 security 허용범위 수정
1 parent 5f240b4 commit 258d2ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/moing/backend/global/config/security/SecurityConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ protected void configure(HttpSecurity http) throws Exception {
5252
.antMatchers("/swagger-ui/**").permitAll()
5353
.antMatchers("/webjars/**").permitAll()
5454
.antMatchers("/v3/api-docs").permitAll()
55-
.antMatchers("/api/auth/**", "/docs/**", "/api/image/**").permitAll()
55+
.antMatchers("/api/auth/**", "/docs/**", "/api/image/**", "/actuator", "/actuator/*").permitAll()
5656
.anyRequest().authenticated()
5757
.and()
5858
.apply(new JwtSecurityConfig(tokenUtil, memberQueryService));

0 commit comments

Comments
 (0)