forked from baron/baron-sso
20 lines
488 B
Nginx Configuration File
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;
|
|
}
|
|
}
|