This commit is contained in:
chase
2026-05-04 11:07:31 +03:00
commit 52280c721f
44 changed files with 991 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
# syntax=docker/dockerfile:1
FROM nginx:1.27-alpine
LABEL service="proxy" description="Reverse proxy to web + api"
# Заменяем дефолтный конфиг на свой (в образе — воспроизводимо)
COPY nginx.conf /etc/nginx/nginx.conf
EXPOSE 80
HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \
CMD wget -qO- http://127.0.0.1/ >/dev/null || exit 1