MiroFish / nginx.conf.template
wkplhc's picture
Create nginx.conf.template
89dd27c verified
raw
history blame contribute delete
462 Bytes
server {
listen ${PORT:-7860};
server_name _;
location / {
root /app/frontend/dist;
index index.html index.htm;
try_files $uri /index.html;
}
location /api/ {
proxy_pass http://127.0.0.1:5001/;
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;
}
}