feat: add /rb8001/ routing for rb8001 container on port 8001 #1

Merged
happybell80 merged 1 commits from happybell80 into main 2025-07-16 00:47:41 +09:00

View File

@ -155,6 +155,15 @@ server {
proxy_set_header X-Forwarded-Proto $scheme;
}
# RB8001 API endpoints
location /rb8001/ {
proxy_pass http://localhost:8001/;
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;
}
location /.well-known/acme-challenge/ {
alias /var/www/html/.well-known/acme-challenge/;
}