fix: add Next.js API route handler to proxy with correct host headers

This commit is contained in:
Erik Silva
2025-12-09 02:24:56 -03:00
parent 9ece6e88fe
commit fc310c0616
3 changed files with 112 additions and 1 deletions

View File

@@ -10,10 +10,29 @@ const nextConfig: NextConfig = {
{
source: "/api/:path*",
destination: "http://backend:8080/api/:path*",
has: [
{
type: "header",
key: "X-Forwarded-Host",
},
],
},
],
};
},
headers: async () => {
return [
{
source: "/api/:path*",
headers: [
{
key: "X-Forwarded-For",
value: "127.0.0.1",
},
],
},
];
},
};
export default nextConfig;