Switch Nginx to port 3000 for Coolify

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Julien Calixte
2026-03-28 23:07:13 +01:00
parent 99c2c92145
commit 31b6334bd7
2 changed files with 2 additions and 2 deletions

View File

@@ -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;"]

View File

@@ -1,5 +1,5 @@
server {
listen 80;
listen 3000;
server_name _;
root /usr/share/nginx/html;
index index.html;