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/; + } + }