Files
NexaVPN/public-web/Dockerfile
nessi 3f7e830761 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.
2026-03-24 18:28:48 +01:00

10 lines
498 B
Docker

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
COPY admin-web/public/favicon.ico /usr/share/nginx/html/favicon.ico
COPY public-web/nginx.conf /etc/nginx/conf.d/default.conf