feat: add errorpage-handler service (403,404, 500, 502-504)

This commit is contained in:
2026-01-21 17:39:14 +01:00
parent 53b71a33ad
commit 9f86bd1142
9 changed files with 426 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
FROM nginx:alpine
RUN rm -rf /usr/share/nginx/html/*
COPY html /usr/share/nginx/html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]