Skip to content

Commit eb600bc

Browse files
committed
fix: 세션 오류 해결
1 parent dc9df36 commit eb600bc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

was/src/main/java/com/senifit/was/config/SecurityConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public SecurityFilterChain filterChain(HttpSecurity http, UserDetailsService use
5555
.csrf(AbstractHttpConfigurer::disable)
5656
.authorizeHttpRequests(authz -> authz
5757
.requestMatchers("/health", "/actuator/health", "/actuator/prometheus", "/actuator/metrics/**", "/ui/home").permitAll()
58-
.anyRequest().authenticated()
58+
.anyRequest().permitAll()
5959
)
6060
.exceptionHandling(ex -> ex
6161
.authenticationEntryPoint(new HttpStatusEntryPoint(HttpStatus.UNAUTHORIZED))

0 commit comments

Comments
 (0)