Skip to content

Commit

Permalink
[chore] 도메인 검증용 파일 업로드
Browse files Browse the repository at this point in the history
  • Loading branch information
chanwoo7 committed Aug 23, 2024
1 parent 8d20d8b commit 8ede3f5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/com/book/backend/global/SecurityConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ SecurityFilterChain securityFilterChain(HttpSecurity http) throws Exception {
.requestMatchers("/swagger-ui/**", "/v3/api-docs/**").permitAll() // Swagger 관련 경로
.requestMatchers("/login/oauth2/**").permitAll() // OAuth2 Callback 경로
.requestMatchers("/api/auth/signup", "/api/auth/login", "/api/auth/kakaoLogin").permitAll() // 회원가입, 로그인 경로
.requestMatchers("/.well-known/**").permitAll()
// .requestMatchers("/api/**") // 모든 API에 대한 인증 비활성화 (개발용)
.anyRequest().authenticated()
)
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
4022EC23787608E8FA617052AC5D9C07846AD3E10BB8AD00D559DF4279F581E8
sectigo.com
t0250548001724347535

0 comments on commit 8ede3f5

Please sign in to comment.