Add nginx proxy configuration for rb10408 port (희재님 테스트용)
All checks were successful
Deploy Nginx Config to Ubuntu Server / deploy (push) Successful in 2s

This commit is contained in:
happybell80 2025-07-21 22:59:15 +09:00
parent a34f0060c0
commit 626f9d4e6a

View File

@ -160,6 +160,15 @@ server {
proxy_set_header X-Forwarded-Proto $scheme;
}
# RB10408 API endpoints (희재님 테스트용)
location /rb10408/ {
proxy_pass http://localhost:10408/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
# Skill Email API endpoints
location /skill-email/ {
proxy_pass http://localhost:8501/;