feat: test_api 프록시 경로를 rb10508로 변경

- /rb8001/ → /rb10508/로 경로 변경
- 포트 8001 → 10508로 변경
- README.md 프록시 라우팅 정보 업데이트

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
happybell80 2025-07-09 21:10:40 +09:00
parent 0f18ab56d1
commit 42ec74c348
2 changed files with 4 additions and 4 deletions

View File

@ -41,7 +41,7 @@ NAS_SSH_KEY_ADMIN: SSH 개인키
- `https://ro-being.com/` → 192.168.219.45:5173 (메인 프론트엔드) - `https://ro-being.com/` → 192.168.219.45:5173 (메인 프론트엔드)
- `https://ro-being.com/api/` → 192.168.219.45:8000 (frontend/backend) - `https://ro-being.com/api/` → 192.168.219.45:8000 (frontend/backend)
- `https://ro-being.com/rb8001/` → 192.168.219.45:8001 (api_base) - `https://ro-being.com/rb10508/` → 192.168.219.45:10508 (test_api)
## SSL 설정 ## SSL 설정

View File

@ -137,9 +137,9 @@ server {
proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-Forwarded-Proto $scheme;
} }
# RB8001 API endpoints # RB10508 API endpoints
location /rb8001/ { location /rb10508/ {
proxy_pass http://localhost:8001; proxy_pass http://localhost:10508;
proxy_set_header Host $host; proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;