diff --git a/Dockerfile b/Dockerfile index 3732bd8..f671252 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,12 +11,12 @@ COPY . . RUN npm run build # Dockerfile untuk server Nuxt 3 -FROM nginx:alpine +FROM nginx:1.29-alpine -# Copy konfigurasi Nginx -COPY nginx.conf /etc/nginx/conf.d/default.conf +RUN rm -f /etc/nginx/conf.d/default.conf +# COPY nginx.conf /etc/nginx/conf.d/default.conf +COPY nginx.conf /etc/nginx/conf.d/ -# Copy hasil build COPY --from=builder /app/.output/public /usr/share/nginx/html EXPOSE 80 diff --git a/nginx.conf b/nginx.conf index bf0987a..bc0b1d8 100644 --- a/nginx.conf +++ b/nginx.conf @@ -1,6 +1,6 @@ server { listen 80; - server_name localhost; + server_name _; root /usr/share/nginx/html; index index.html;