From 31b6334bd7a454a8aa7b1d2fe3fb41307474431c Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Sat, 28 Mar 2026 23:07:13 +0100 Subject: [PATCH] Switch Nginx to port 3000 for Coolify Co-Authored-By: Claude Sonnet 4.6 --- Dockerfile | 2 +- nginx.conf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 660ab9f..fa48615 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,6 +22,6 @@ FROM nginx:alpine COPY --from=builder /app/dist /usr/share/nginx/html COPY nginx.conf /etc/nginx/conf.d/default.conf -EXPOSE 80 +EXPOSE 3000 CMD ["nginx", "-g", "daemon off;"] diff --git a/nginx.conf b/nginx.conf index 57c3b86..2c3b4d5 100644 --- a/nginx.conf +++ b/nginx.conf @@ -1,5 +1,5 @@ server { - listen 80; + listen 3000; server_name _; root /usr/share/nginx/html; index index.html;