Skip to content

Commit

Permalink
[fix]: static 파일 접근 권한 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Gseungmin committed Aug 8, 2023
1 parent fc8c3d2 commit 9b47076
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ SecurityFilterChain securityFilterChain(HttpSecurity http) throws Exception {
, "/auth/email" //이메일 찾기
, "/auth/find/id" //아이디 찾기
, "/auth/reset/password" //패스워드 찾기
, "/address.html" //카카오 주소 api
, "/static/**" //카카오 주소 api
// , "/**" //임시로 모든 인증 처리 제외
).permitAll()
.anyRequest().authenticated())
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ spring:

jpa:
hibernate:
ddl-auto: create
ddl-auto: update

properties:
hibernate:
Expand Down

0 comments on commit 9b47076

Please sign in to comment.