목차 nginx.conf 더보기 events {} http { server { listen 80; server_name localhost; location / { root /usr/share/nginx; index index.html; } } } Dockerfile 더보기 FROM nginx:alpine COPY nginx.conf /etc/nginx/nginx.conf COPY index.html /usr/share/nginx/index.html EXPOSE 80 CMD ["nginx", "-g", "daemon off;"] 공유하기 게시글 관리 wngnl-dev 저작자표시 비영리 변경금지 목차 목차 닫기