From 3f7e83076111721a78ff715ace9bd75775bc2241 Mon Sep 17 00:00:00 2001 From: nessi Date: Tue, 24 Mar 2026 18:28:48 +0100 Subject: [PATCH] feat: add status page HTML to public-web nginx container for platform health monitoring Add status.html to Dockerfile COPY instructions for serving public status page alongside main landing page. --- public-web/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/public-web/Dockerfile b/public-web/Dockerfile index 1cddda0..397d500 100644 --- a/public-web/Dockerfile +++ b/public-web/Dockerfile @@ -1,6 +1,7 @@ FROM nginx:1.27-alpine COPY public-web/index.html /usr/share/nginx/html/index.html +COPY public-web/status.html /usr/share/nginx/html/status.html COPY public-web/styles.css /usr/share/nginx/html/styles.css COPY admin-web/public/NexaVPN_Logo.png /usr/share/nginx/html/NexaVPN_Logo.png COPY admin-web/public/NexaVPN_Logo_Only.png /usr/share/nginx/html/NexaVPN_Logo_Only.png