From 08fc5c873c8c281a24a7a911bc955d34be8f760c Mon Sep 17 00:00:00 2001 From: Vishnu Date: Tue, 1 Jul 2025 14:03:16 +0530 Subject: [PATCH] fix: update nginx and docker-compose to use port 80 for production --- app/nginx.conf | 4 +++- compose.yaml | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/app/nginx.conf b/app/nginx.conf index 03c6764..ab22753 100644 --- a/app/nginx.conf +++ b/app/nginx.conf @@ -1,5 +1,5 @@ server { - listen 3000; + listen 80; server_name aalai.ai www.aalai.ai; location / { @@ -10,4 +10,6 @@ server { proxy_set_header Host $host; proxy_cache_bypass $http_upgrade; } + + } \ No newline at end of file diff --git a/compose.yaml b/compose.yaml index 6d1e6b0..5c07104 100644 --- a/compose.yaml +++ b/compose.yaml @@ -11,10 +11,10 @@ services: stdin_open: true tty: true ports: - - "8300:3000" + - "8300:80" environment: - WDS_SOCKET_PORT=0 - - PORT=3000 + - PORT=80 - DOCSIFY_PORT=8201 volumes: - ./app:/app