## 가이드 내용
✅ 현재 설정 확인 (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>