From 55b17cb1f76bd7f95cad0acce24debdf409ed472 Mon Sep 17 00:00:00 2001 From: SangHyeok0908 Date: Mon, 22 Dec 2025 16:19:42 +0900 Subject: [PATCH] Fix --- .github/workflows/server-prod-deploy.yml | 2 +- server/docker-compose.yml | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/server-prod-deploy.yml b/.github/workflows/server-prod-deploy.yml index a7719364c..3737bf235 100644 --- a/.github/workflows/server-prod-deploy.yml +++ b/.github/workflows/server-prod-deploy.yml @@ -31,7 +31,7 @@ jobs: - name: Make application.yml run: | mkdir -p ./server/config - echo "${{ secrets.APPLICATION_YML }}" > ./server/config/application.yml + echo "${{ secrets.APPLICATION_YML }}" > ./config/application.yml - name: Deploy with Docker Compose run: | diff --git a/server/docker-compose.yml b/server/docker-compose.yml index e46c44635..8d2918f97 100644 --- a/server/docker-compose.yml +++ b/server/docker-compose.yml @@ -8,10 +8,9 @@ services: - TZ=Asia/Seoul - PROFILES=${PROFILES:?PROFILES environment variable is not set} volumes: - - ./server/config/application.yml:/app/config/application.yml:ro + - ./config/application.yml:/app/config/application.yml:ro restart: always - nginx: container_name: nginx-proxy image: nginx:latest @@ -20,7 +19,7 @@ services: - "443:443" volumes: # 1. Nginx 설정 파일 - - ./nginx/conf.d:/etc/nginx/conf.d + - ./nginx:/etc/nginx/conf.d # 2. SSL 인증서 저장소 (프로젝트 내 certbot 폴더 공유) - ./certbot/conf:/etc/letsencrypt - ./certbot/www:/var/www/certbot