diff --git a/Dockerfile b/Dockerfile index 6d0ee78..4701a64 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,5 +13,5 @@ RUN pnpm build FROM nginx:1.27.1 COPY nginx.conf /etc/nginx/nginx.conf COPY --from=build /app/dist /usr/share/nginx/html -EXPOSE 8080 +EXPOSE 80 diff --git a/nginx.conf b/nginx.conf index 9fbe7cd..fef7881 100644 --- a/nginx.conf +++ b/nginx.conf @@ -43,7 +43,7 @@ http { keepalive_timeout 75 20; server { - listen 8080; + listen 80; server_name denis-ergin.de; root /usr/share/nginx/html;