2 Commits

Author SHA1 Message Date
kjh2064 89fa51efe2 refactor admin UX and stabilize shell
TaxBaik CI/CD / build-and-deploy (push) Failing after 2m20s
2026-07-09 00:03:33 +09:00
kjh2064 ebda875371 추가: Nginx 설정 변경 상세 가이드
TaxBaik CI/CD / build-and-deploy (push) Failing after 4m8s
## 가이드 내용
 현재 설정 확인 (before)
 변경해야 할 3가지 항목
 최종 설정 (after)
 3가지 변경 방법
   - nano 에디터 (권장)
   - sed 명령어 (자동)
   - Python 스크립트
 검증 (4단계)
 변경 전후 비교
 롤백 방법
 문제 해결

## 파일 위치
/etc/nginx/sites-available/taxbaik-domains.conf

## 3가지 변경사항
1. location /taxbaik { → location /taxbaik/ {
2. proxy_pass http://127.0.0.1:5001; → proxy_pass http://127.0.0.1:5001/;
3. rewrite ^/taxbaik/(.*)$ /$1 break; (추가)

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2026-07-08 16:31:04 +09:00