master
Matthew 2025-04-24 12:41:10 -04:00
parent 67e1f24d0f
commit ea9054533b
Signed by: matthew
SSH Key Fingerprint: SHA256:piIXekA9q1p0ZGi4ogFbNY1embip5Ytbi3v8AZ8UYq4
1 changed files with 8 additions and 0 deletions

View File

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