From 5a27b43dffdc28bfdd1e44f57829d59113785650 Mon Sep 17 00:00:00 2001 From: kjh2064 Date: Sun, 5 Jul 2026 15:11:16 +0900 Subject: [PATCH] fix: Use domain instead of IP for favicon asset verification in deploy - Change favicon verification from http://${DEPLOY_HOST} (IP) to https://quant.taxbaik.com (domain) - Nginx routes based on domain name in Host header, not IP address - Fixes CI/CD deploy-prod stage failures Co-Authored-By: Claude Sonnet 5 --- .gitea/workflows/deploy-prod.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/deploy-prod.yml b/.gitea/workflows/deploy-prod.yml index 499a9b3..c76ee8e 100644 --- a/.gitea/workflows/deploy-prod.yml +++ b/.gitea/workflows/deploy-prod.yml @@ -175,8 +175,8 @@ jobs: fi echo "=== Verifying Favicon Assets ===" - favicon_svg_code=$(curl -s -o /dev/null -w "%{http_code}" "http://${DEPLOY_HOST}/favicon.svg") - favicon_png_code=$(curl -s -o /dev/null -w "%{http_code}" "http://${DEPLOY_HOST}/favicon.png") + favicon_svg_code=$(curl -s -o /dev/null -w "%{http_code}" "https://quant.taxbaik.com/favicon.svg") + favicon_png_code=$(curl -s -o /dev/null -w "%{http_code}" "https://quant.taxbaik.com/favicon.png") echo "/favicon.svg -> ${favicon_svg_code}" echo "/favicon.png -> ${favicon_png_code}" if [ "$favicon_svg_code" != "200" ] && [ "$favicon_png_code" != "200" ]; then