# heleos nginx base image. Ships a hardened main config + reusable snippets. # The per-site server block is provided at runtime as a mounted # /etc/nginx/conf.d/default.conf (rendered from a profile template). FROM nginx:1.27-alpine COPY conf/nginx.conf /etc/nginx/nginx.conf COPY conf/snippets/ /etc/nginx/snippets/ # Access/error logs already go to stdout/stderr in the base image. EXPOSE 80