We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2fc31f0 commit 401fa4bCopy full SHA for 401fa4b
src/main/java/com/back/global/security/SecurityConfig.java
@@ -50,7 +50,7 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
50
.requestMatchers(HttpMethod.GET, "/api/rooms/*").permitAll() // 방 상세 조회
51
//.requestMatchers("/api/rooms/RoomChatApiControllerTest").permitAll() // 테스트용 임시 허용
52
.requestMatchers("/","/swagger-ui/**", "/v3/api-docs/**").permitAll() // Swagger 허용
53
- .requestMatchers("/h2-console/**").permitAll() // H2 Console 허용
+// .requestMatchers("/h2-console/**").permitAll() // H2 Console 허용
54
.requestMatchers("/actuator/health").permitAll() // 헬스 체크 허용
55
.requestMatchers("/file/**").permitAll() // 파일 관련 요청 모두 허용(테스트 완료 후, 요청제한 예정)
56
.anyRequest().authenticated()
0 commit comments