Skip to content
This repository was archived by the owner on Jul 20, 2026. It is now read-only.

Commit a77921c

Browse files
committed
Fixed proxy
1 parent e0126ff commit a77921c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

frontend/nginx.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ server {
55
index index.html;
66

77
location /api/ {
8-
proxy_pass http://backend:3000/api/;
8+
proxy_pass http://backend:3000;
99
proxy_http_version 1.1;
1010
proxy_set_header Host $host;
1111
proxy_set_header X-Real-IP $remote_addr;

frontend/proxy.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"/api": {
3-
"target": "http://backend-dev:3000/api",
3+
"target": "http://backend-dev:3000",
44
"secure": false,
55
"changeOrigin": true
66
}

0 commit comments

Comments
 (0)