Skip to content

Commit

Permalink
Fix: SecurityConfig 인증 무시 경로 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
nohy6630 committed May 9, 2024
1 parent f4ad045 commit e87e529
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
"/swagger-ui/**",
"/swagger-resources/**",
"/v3/api-docs/**",
"/healths").permitAll()
"/healths",
"/ws/**").permitAll()
.anyRequest().authenticated())
.addFilterBefore(jwtFilter, ExceptionTranslationFilter.class)
.cors(c -> c.configurationSource(request -> {
Expand Down

0 comments on commit e87e529

Please sign in to comment.