From 14c4d1f3d0fb4188c2950acda6693bc45aa9e273 Mon Sep 17 00:00:00 2001 From: Ammar Qaffaf Date: Tue, 27 Feb 2024 10:47:48 +0300 Subject: [PATCH] change port to 8080 --- Dockerfile | 2 +- nginx.conf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 25be02c..6897a22 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,6 +14,6 @@ COPY . . RUN npm run build -EXPOSE 80 +EXPOSE 8080 CMD ["sh", "-c", "nginx -g 'daemon off;' & npm run start:all"] \ No newline at end of file diff --git a/nginx.conf b/nginx.conf index 6e330da..3190ba8 100644 --- a/nginx.conf +++ b/nginx.conf @@ -11,7 +11,7 @@ http { keepalive_timeout 65; server { - listen 80; + listen 8080; location /auth { proxy_pass http://localhost:7001;