1
0
forked from baron/baron-sso
Files
baron-sso/frontend/nginx.conf
2026-01-09 14:24:35 +09:00

20 lines
488 B
Nginx Configuration File

server {
listen 5000;
# Backend API Proxy
location /api {
proxy_pass http://baron_backend:3000;
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;
}
# Frontend Static Files
location / {
root /usr/share/nginx/html;
index index.html;
try_files $uri $uri/ /index.html;
}
}