From 19acb7ef15d89abb97d88b8dfbbe57b39807ecc7 Mon Sep 17 00:00:00 2001 From: mike Date: Sun, 28 Dec 2025 05:39:15 +0100 Subject: [PATCH] chore: update 2 file(s) --- Dockerfile | 2 +- nginx.conf | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index fcc39c3..bc44116 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM nginx:alpine COPY index.html /usr/share/nginx/html/ COPY style.css /usr/share/nginx/html/ -COPY chatv2.js /usr/share/nginx/html/ +COPY chatv3.js /usr/share/nginx/html/ COPY 404.html /usr/share/nginx/html/ COPY favicon.ico /usr/share/nginx/html/ COPY nginx.conf /etc/nginx/conf.d/default.conf diff --git a/nginx.conf b/nginx.conf index 4a5df2b..1d71fb1 100644 --- a/nginx.conf +++ b/nginx.conf @@ -20,8 +20,8 @@ server { try_files /style.css =204; } - location = chatv2.js { - try_files /chatv2.js =204; + location = chatv3.js { + try_files /chatv3.js =204; } # Custom 404 page