Skip to content

Commit

Permalink
[fix] : 디스코드 웹훅 URL을 환경변수 처리하여 공격을 방지한다 (#163)
Browse files Browse the repository at this point in the history
  • Loading branch information
bbbang105 authored Jan 25, 2025
1 parent 02b766f commit 4782428
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion deploy/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
# 작업 디렉토리 설정
cd /home/ubuntu

# ✅ .env 파일 로드
if [ -f "/home/ubuntu/.env" ]; then
source /home/ubuntu/.env
else
echo "⚠️ .env 파일을 찾을 수 없습니다. 스크립트를 종료합니다."
exit 1
fi

# ✅ 현재 실행중인 App이 green인지 확인합니다.
IS_GREEN=$(sudo docker ps --format '{{.Names}}' | grep -w green)

Expand All @@ -15,7 +23,6 @@ DEFAULT_CONF="/etc/nginx/nginx.conf"
DOCKER_COMPOSE_FILE="/home/ubuntu/docker-compose.yaml"

# discord webhook 관련 변수
DISCORD_WEBHOOK_URL="https://discord.com/api/webhooks/1326042657880932434/ARfU0zZr8Gf1BLn1D1-qAr1pPber2FOjhKTn6fZGVxOemHL068tWt8nlQOQDhXkCFL03"
MESSAGE_SUCCESS="🥳 배포가 성공적으로 수행되었습니다!"
MESSAGE_FAILURE="🚨 배포 과정에서 오류가 발생했습니다. 빠른 확인바랍니다."

Expand Down

0 comments on commit 4782428

Please sign in to comment.