This commit is contained in:
Irwan Cahyono 2025-08-08 12:27:28 +07:00
parent 891cea4389
commit 5046645795
2 changed files with 5 additions and 5 deletions

View File

@ -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

View File

@ -1,6 +1,6 @@
server {
listen 80;
server_name localhost;
server_name _;
root /usr/share/nginx/html;
index index.html;