ad84c38641
Caddy routes /api/* and /webhooks/* to 172.20.1.238:3002 but the docker-compose had PORT=3001 and bound port 3001. Changed: - PORT env var: 3001 -> 3002 - Port binding: 0.0.0.0:3002:3002 - Health check: localhost:3002/health - Next.js rewrites: localhost:3001 -> localhost:3002 - Frontend port: 127.0.0.1 -> 0.0.0.0 (Caddy remote access)
20 lines
424 B
JavaScript
20 lines
424 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'standalone',
|
|
allowedDevOrigins: ['172.20.1.238'],
|
|
async rewrites() {
|
|
return [
|
|
{
|
|
source: '/api/:path*',
|
|
destination: 'http://localhost:3002/api/:path*',
|
|
},
|
|
{
|
|
source: '/webhooks/:path*',
|
|
destination: 'http://localhost:3002/webhooks/:path*',
|
|
},
|
|
];
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|