fix: update nginx and docker-compose to use port 80 for production

This commit is contained in:
2025-07-01 14:03:16 +05:30
parent 8ee579fab7
commit 08fc5c873c
2 changed files with 5 additions and 3 deletions

View File

@@ -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;
}
}

View File

@@ -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