Skip to content

Commit

Permalink
:fix docker.yml and SecurityConfig
Browse files Browse the repository at this point in the history
  • Loading branch information
sunwupark committed Feb 5, 2024
1 parent 248b240 commit c0aa53a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
# Docker 이미지 다운로드
sudo docker pull ${{ secrets.DOCKER_REPO }}/meme-auth
docker run -d --rm --name server -p 8080:8080 sunwupark/meme-auth
docker run -d --rm --name server -p 8080:8080 ${{ secrets.DOCKER_REPO }}/meme-auth
# 사용하지 않는 Docker 이미지 정리
sudo docker image prune -f
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti
.requestMatchers("/api/v0/auth/logout").permitAll()
.requestMatchers("/api/v0/auth/withdraw").permitAll()
.requestMatchers("/api/v0/auth/reissue").permitAll()
.requestMatchers("/auth/**").permitAll()
);

http.addFilterBefore(jwtCustomAuthenticationFilter, UsernamePasswordAuthenticationFilter.class);
Expand Down

0 comments on commit c0aa53a

Please sign in to comment.