fix: update nginx and docker-compose to use port 80 for production
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user