Skip to content

Commit

Permalink
๐Ÿ”ง fix : nginx listen port ๋ณ€๊ฒฝ
Browse files Browse the repository at this point in the history
  • Loading branch information
jinddings committed Nov 18, 2024
1 parent 86894ea commit 3251f19
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion FE/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ FROM nginx:alpine
WORKDIR /app
COPY --from=builder /app/dist /usr/share/nginx/html

EXPOSE 3000
EXPOSE 5173
CMD ["nginx", "-g", "daemon off;"]
2 changes: 1 addition & 1 deletion FE/nginx/nginx.conf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
server {
listen 80;
listen 5173;
access_log /usr/log/nginx/access.log;
error_log /usr/log/nginx/error.log;

Expand Down

0 comments on commit 3251f19

Please sign in to comment.