master
Matthew 2025-04-24 12:58:26 -04:00
parent f624784480
commit b6e7248015
Signed by: matthew
SSH Key Fingerprint: SHA256:piIXekA9q1p0ZGi4ogFbNY1embip5Ytbi3v8AZ8UYq4
1 changed files with 2 additions and 2 deletions

View File

@ -4,14 +4,14 @@ server {
server_name finovators.mracs.dev; server_name finovators.mracs.dev;
# Serve static frontend # Serve static frontend
root /opt/fba/frontend/dist; root /opt/fba/frontend/dist/;
index index.html; index index.html;
location / { location / {
try_files $uri =404; try_files $uri =404;
} }
location /api { location /api/ {
proxy_pass http://localhost:56120/; proxy_pass http://localhost:56120/;
} }
} }