fix nginx

This commit is contained in:
2025-06-01 14:54:03 +02:00
parent 59c85f0a11
commit 495c6a1ee3
+2 -2
View File
@@ -3,10 +3,10 @@ server {
server_name localhost; server_name localhost;
location / { location / {
proxy_pass http://localhost:3001 proxy_pass http://localhost:3001;
} }
location /api { location /api {
proxy_pass http://localhost:3000 proxy_pass http://localhost:3000;
} }
} }