From 271e655f7b4d6a5646202011df1b7240604a48d9 Mon Sep 17 00:00:00 2001 From: Ratchet7x5 <36789694+Ratchet7x5@users.noreply.github.com> Date: Thu, 12 Dec 2024 14:57:16 +1300 Subject: [PATCH] attempt #1: fix 405 error by adding proxy_pass to nginx.conf --- web/nginx.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/web/nginx.conf b/web/nginx.conf index adf387cd..316af06a 100644 --- a/web/nginx.conf +++ b/web/nginx.conf @@ -19,6 +19,7 @@ http { location / { try_files $uri $uri/ /index.html; + proxy_pass https://auis-api.fly.dev; } # Additional configuration can be added here if needed