Comment out /api splitter for now, assume all traffic to backend comes from the frontend
Some checks failed
Podman Rootless Demo / test-backend (push) Has been skipped
Podman Rootless Demo / test-frontend (push) Has been skipped
Podman Rootless Demo / build-backend (push) Has been skipped
Podman Rootless Demo / build-frontend (push) Has been skipped
Podman Rootless Demo / deploy-prod (push) Failing after 31s

This commit is contained in:
continuist 2025-09-21 00:45:35 -04:00
parent 5196e1e0f6
commit 719d745bcb

View file

@ -37,13 +37,13 @@ http {
}
# backend API
location /api/ {
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Connection "";
proxy_pass http://127.0.0.1:${PROD_BACKEND_PORT}/;
}
# location /api/ {
# proxy_http_version 1.1;
# proxy_set_header Host $host;
# proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
# proxy_set_header X-Forwarded-Proto $scheme;
# proxy_set_header Connection "";
# proxy_pass http://127.0.0.1:${PROD_BACKEND_PORT}/;
# }
}
}