From 42ec74c348fa5f22940667c5af5b63ac27412a9f Mon Sep 17 00:00:00 2001 From: happybell80 Date: Wed, 9 Jul 2025 21:10:40 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20test=5Fapi=20=ED=94=84=EB=A1=9D?= =?UTF-8?q?=EC=8B=9C=20=EA=B2=BD=EB=A1=9C=EB=A5=BC=20rb10508=EB=A1=9C=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - /rb8001/ → /rb10508/로 경로 변경 - 포트 8001 → 10508로 변경 - README.md 프록시 라우팅 정보 업데이트 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- README.md | 2 +- server-nginx-default | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 8cd5259..3a75d78 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ NAS_SSH_KEY_ADMIN: SSH 개인키 - `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/rb8001/` → 192.168.219.45:8001 (api_base) +- `https://ro-being.com/rb10508/` → 192.168.219.45:10508 (test_api) ## SSL 설정 diff --git a/server-nginx-default b/server-nginx-default index 5819c09..3ebcbf8 100644 --- a/server-nginx-default +++ b/server-nginx-default @@ -137,9 +137,9 @@ server { proxy_set_header X-Forwarded-Proto $scheme; } - # RB8001 API endpoints - location /rb8001/ { - proxy_pass http://localhost:8001; + # RB10508 API endpoints + location /rb10508/ { + proxy_pass http://localhost:10508; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;