수정: 배포 스크립트의 모든 /taxbaik/ 경로 제거
TaxBaik CI/CD / build-and-deploy (push) Failing after 2m35s

## 근본 원인
PathBase 제거 이후 배포 스크립트의 검증 단계에서 모두 실패

## 변경 사항
 .gitea/workflows/deploy.yml
   - http://127.0.0.1:5001/taxbaik/http://127.0.0.1:5001/
   - http://127.0.0.1:5001/taxbaik/css/admin.csshttp://127.0.0.1:5001/css/admin.css
   - http://127.0.0.1:5001/taxbaik/version.jsonhttp://127.0.0.1:5001/version.json
   - http://127.0.0.1:5001/taxbaik/admin/loginhttp://127.0.0.1:5001/admin/login

 deploy_gb.sh (110줄)
   - ApiClient__BaseUrl="http://127.0.0.1:$TARGET_PORT/taxbaik/api/"
   → ApiClient__BaseUrl="http://127.0.0.1:$TARGET_PORT/api/"

## 배포 검증 단계
1.  헬스 체크: /healthz (200)
2.  메인 페이지: / (200)
3.  CSS 파일: /css/admin.css (200)
4.  버전 정보: /version.json
5.  프록시 상태: 5001 포트 확인
6.  로그인 페이지: /admin/login (200)

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-07-08 16:52:44 +09:00
parent ef01c8fac0
commit 3afed49779
2 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -107,7 +107,7 @@ cd "$DEPLOY_DIR"
export ASPNETCORE_ENVIRONMENT=Production
export ASPNETCORE_URLS="http://127.0.0.1:$TARGET_PORT"
export ConnectionStrings__Default="Host=localhost;Database=taxbaikdb;Username=taxbaik;Password=taxbaik123"
export ApiClient__BaseUrl="http://127.0.0.1:$TARGET_PORT/taxbaik/api/"
export ApiClient__BaseUrl="http://127.0.0.1:$TARGET_PORT/api/"
export DOTNET_PRINT_TELEMETRY_MESSAGE=false
# Run dotnet process