From a73a22f92aef189e681bedb7127246e0e2b0969a Mon Sep 17 00:00:00 2001 From: Kunthawat Greethong Date: Mon, 9 Mar 2026 21:15:51 +0700 Subject: [PATCH] fix: Configure Node adapter to listen on 0.0.0.0:80 for Docker --- astro.config.mjs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/astro.config.mjs b/astro.config.mjs index 7630821..46a3014 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -8,7 +8,9 @@ import tailwindcss from '@tailwindcss/vite'; export default defineConfig({ integrations: [db()], adapter: node({ - mode: 'standalone' + mode: 'standalone', + port: 80, + host: '0.0.0.0' }), vite: { plugins: [tailwindcss()],