|
server {
|
|
listen 443 ssl http2;
|
|
listen [::]:443 ssl http2;
|
|
server_name finovators.mracs.dev;
|
|
|
|
location / {
|
|
# Serve static frontend
|
|
root /opt/fba/frontend/dist;
|
|
index index.html;
|
|
#try_files $uri =404;
|
|
}
|
|
|
|
location /api/ {
|
|
proxy_pass http://localhost:56120/;
|
|
}
|
|
}
|