feat: add /rb8001/ routing for rb8001 container on port 8001
All checks were successful
Deploy Nginx Config to Ubuntu Server / deploy (pull_request) Successful in 1s

This commit is contained in:
happybell80 2025-07-16 00:39:50 +09:00
parent 698913a351
commit a810837479

View File

@ -155,6 +155,15 @@ server {
proxy_set_header X-Forwarded-Proto $scheme; 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/ { location /.well-known/acme-challenge/ {
alias /var/www/html/.well-known/acme-challenge/; alias /var/www/html/.well-known/acme-challenge/;
} }