This commit is contained in:
2025-06-01 14:56:24 +02:00
parent 495c6a1ee3
commit 052523b309
+5 -3
View File
@@ -2,11 +2,13 @@ server {
listen 80; listen 80;
server_name localhost; server_name localhost;
location /api {
proxy_pass http://localhost:3000;
}
location / { location / {
proxy_pass http://localhost:3001; proxy_pass http://localhost:3001;
} }
location /api {
proxy_pass http://localhost:3000;
}
} }