Skip to content

Commit

Permalink
latest fix
Browse files Browse the repository at this point in the history
  • Loading branch information
strazhnyk committed Nov 21, 2024
1 parent bdfba06 commit 818c138
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/infra/nginx/conf/default.conf
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ server {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Real-Port $remote_port;
proxy_set_header Host $host;
proxy_pass http://backend:8000;
proxy_pass http://backend:5000;
}
}
2 changes: 1 addition & 1 deletion server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ RUN npm install
COPY . .

# Expose the backend port
EXPOSE 8000
EXPOSE 5000

# Run the backend
CMD ["npm", "start"]

0 comments on commit 818c138

Please sign in to comment.