From 3a4dc8307520569d050f21eddd5409a3a779696e Mon Sep 17 00:00:00 2001 From: Keannu Bernasol Date: Sat, 29 Mar 2025 03:44:57 +0800 Subject: [PATCH] Update listen port --- Dockerfile | 2 +- nginx/nginx.conf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index e37a332..029c51c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,4 +10,4 @@ RUN rm -rf /usr/share/nginx/html/* COPY --from=build /usr/local/app/build/ /usr/share/nginx/html COPY nginx/nginx.conf /etc/nginx/conf.d/default.conf -EXPOSE 80 +EXPOSE 9486 diff --git a/nginx/nginx.conf b/nginx/nginx.conf index c8ea831..4868f43 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -1,5 +1,5 @@ server { - listen 80; + listen 9486; sendfile on; default_type application/octet-stream; gzip on;