docs: codify public admin smoke harness
TaxBaik CI/CD / build-and-deploy (push) Failing after 9m43s

This commit is contained in:
2026-07-04 20:44:18 +09:00
parent e1f3fc5270
commit 8091bb8902
5 changed files with 13 additions and 3 deletions
+4 -3
View File
@@ -4,12 +4,13 @@ server {
client_max_body_size 512M;
# /admin 하위 요청을 /taxbaik/admin 으로 리다이렉트하여 Blazor Base Path 대응
# /admin 은 관리자 진입용 경로로만 사용하고, 실제 앱은 /taxbaik/admin 에서 서빙한다.
# 공개 루트(/)는 공용 SSR 홈페이지를 반환해야 하므로, 관리 UI와 절대 섞지 않는다.
location /admin {
return 301 $scheme://$host/taxbaik$request_uri;
}
# 루트 경로 요청을 /taxbaik 으로 프록싱하여 base href /taxbaik/ 에 대응
# 루트 경로는 공용 SSR 홈페이지.
location / {
proxy_pass http://127.0.0.1:5001/taxbaik/;
proxy_http_version 1.1;
@@ -22,7 +23,7 @@ server {
proxy_set_header X-Forwarded-Proto $scheme;
}
# /taxbaik/ 하위로 들어오는 리소스 및 페이지 요청 처리
# /taxbaik/ 하위는 공개 사이트의 정식 base path.
location /taxbaik {
proxy_pass http://127.0.0.1:5001;
proxy_http_version 1.1;