diff --git a/Nginx/Server Blocks/finovators.mracs.dev.conf b/Nginx/Server Blocks/finovators.mracs.dev.conf index ac4230c..60c788e 100644 --- a/Nginx/Server Blocks/finovators.mracs.dev.conf +++ b/Nginx/Server Blocks/finovators.mracs.dev.conf @@ -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/; }