Skip to content

Commit b6ea529

Browse files
committed
fix: fix https connection
1 parent 407fbcc commit b6ea529

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/main/java/com/blockguard/server/global/config/SecurityConfig.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ public SecurityFilterChain filterChain(HttpSecurity httpSecurity) throws Excepti
5555
registry
5656
.requestMatchers("/api/auth/**").permitAll() // 로그인/회원가입만 허용
5757
.requestMatchers("/actuator/health").permitAll() // 헬스체크 허용
58+
.requestMatchers("/").permitAll()
5859
.requestMatchers("/v3/api-docs/**", "/swagger-ui.html", "/swagger-ui/**", "/swagger-resources/**", "/webjars/**").permitAll()
5960
.anyRequest().authenticated()
6061
)

0 commit comments

Comments
 (0)