change port to 8080

This commit is contained in:
Ammar Qaffaf
2024-02-27 10:47:48 +03:00
parent f67adb6d90
commit 14c4d1f3d0
2 changed files with 2 additions and 2 deletions

View File

@ -14,6 +14,6 @@ COPY . .
RUN npm run build RUN npm run build
EXPOSE 80 EXPOSE 8080
CMD ["sh", "-c", "nginx -g 'daemon off;' & npm run start:all"] CMD ["sh", "-c", "nginx -g 'daemon off;' & npm run start:all"]

View File

@ -11,7 +11,7 @@ http {
keepalive_timeout 65; keepalive_timeout 65;
server { server {
listen 80; listen 8080;
location /auth { location /auth {
proxy_pass http://localhost:7001; proxy_pass http://localhost:7001;