fix: update nginx and docker-compose to use port 80 for production
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
server {
|
server {
|
||||||
listen 3000;
|
listen 80;
|
||||||
server_name aalai.ai www.aalai.ai;
|
server_name aalai.ai www.aalai.ai;
|
||||||
|
|
||||||
location / {
|
location / {
|
||||||
@@ -10,4 +10,6 @@ server {
|
|||||||
proxy_set_header Host $host;
|
proxy_set_header Host $host;
|
||||||
proxy_cache_bypass $http_upgrade;
|
proxy_cache_bypass $http_upgrade;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -11,10 +11,10 @@ services:
|
|||||||
stdin_open: true
|
stdin_open: true
|
||||||
tty: true
|
tty: true
|
||||||
ports:
|
ports:
|
||||||
- "8300:3000"
|
- "8300:80"
|
||||||
environment:
|
environment:
|
||||||
- WDS_SOCKET_PORT=0
|
- WDS_SOCKET_PORT=0
|
||||||
- PORT=3000
|
- PORT=80
|
||||||
- DOCSIFY_PORT=8201
|
- DOCSIFY_PORT=8201
|
||||||
volumes:
|
volumes:
|
||||||
- ./app:/app
|
- ./app:/app
|
||||||
|
|||||||
Reference in New Issue
Block a user