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