## 근본 원인 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.css → http://127.0.0.1:5001/css/admin.css - http://127.0.0.1:5001/taxbaik/version.json → http://127.0.0.1:5001/version.json - http://127.0.0.1:5001/taxbaik/admin/login → http://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:
+1
-1
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user