Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,16 @@ services:
- ./databases/config:/etc/mysql/conf.d
ports:
- "3306:3306"

nginx:
image: nginx:latest
container_name: nginx-proxy
volumes:
- ./nginx/conf.d:/etc/nginx/conf.d
- /etc/letsencrypt:/etc/letsencrypt
ports:
- "80:80"
- "443:443"
depends_on:
- app
restart: always
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ public class SecurityConfig {
"/api/auth/sign-in/**",
"/error",
"/api/auth/reissue",
"/ws-chat/**"
"/ws-chat/**",
"/.well-known/acme-challenge/**" // SSL 인증을 위한 예외 추가
};
private static final String[] SWAGGER_WHITELIST = {
"/swagger-ui/**", "/v3/api-docs/**"
Expand Down