feat(deploy): saju-lab 컨테이너 + nginx + 5위치 동기화

This commit is contained in:
2026-05-25 20:29:34 +09:00
parent 8ec3abb800
commit 8123f758a8
4 changed files with 44 additions and 5 deletions

View File

@@ -359,6 +359,21 @@ server {
proxy_pass http://$tarot_backend$request_uri;
}
# saju-lab API
location /api/saju/ {
resolver 127.0.0.11 valid=10s;
set $saju_backend saju-lab:8000;
proxy_http_version 1.1;
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_read_timeout 300s;
proxy_send_timeout 300s;
proxy_connect_timeout 60s;
proxy_pass http://$saju_backend$request_uri;
}
# agent-office API + WebSocket
location /api/agent-office/ {
resolver 127.0.0.11 valid=10s;