From f6b63d147a73a86a96498939a9a179c2f031f84c Mon Sep 17 00:00:00 2001 From: Alexis Date: Fri, 15 May 2026 10:09:19 +0200 Subject: [PATCH] chore: add nginx configuration to serve frontend and proxy API requests --- frontend/nginx.conf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/frontend/nginx.conf b/frontend/nginx.conf index f1b2bc2..024e2cb 100644 --- a/frontend/nginx.conf +++ b/frontend/nginx.conf @@ -42,4 +42,9 @@ server { location / { try_files $uri $uri/ /index.html; } + + location /api/ { + proxy_pass http://backend:8000/api/; + } + }