Skip to content

Commit

Permalink
Merge pull request #274 from prgrms-web-devcourse-final-project/feature/
Browse files Browse the repository at this point in the history
#268-AI-prompt-수정

[add] /actuator/** spring security 차단 해제
  • Loading branch information
Dom1046 authored Jan 3, 2025
2 parents a739fe0 + d919e8b commit a0cd1b7
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ public SecurityFilterChain defaultSecurityFilterChain(HttpSecurity http) throws
.requestMatchers("/chat-rooms/**").permitAll() // 웹소켓
.requestMatchers("/api/chat/websocket-test").permitAll() //웹소켓
.requestMatchers("/api/v1/ai/**").permitAll() //AI
.requestMatchers("/actuator/**").permitAll() //AI

// Swagger UI 관련 경로 허용
.requestMatchers("/swagger-ui/**").permitAll()
Expand Down

0 comments on commit a0cd1b7

Please sign in to comment.