Compare commits

...

2 Commits

Author SHA1 Message Date
mike
19acb7ef15 chore: update 2 file(s) 2025-12-28 05:39:15 +01:00
mike
ca941dcc6f chore: update 2 file(s) 2025-12-28 05:33:06 +01:00
4 changed files with 4 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
FROM nginx:alpine FROM nginx:alpine
COPY index.html /usr/share/nginx/html/ COPY index.html /usr/share/nginx/html/
COPY style.css /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 404.html /usr/share/nginx/html/
COPY favicon.ico /usr/share/nginx/html/ COPY favicon.ico /usr/share/nginx/html/
COPY nginx.conf /etc/nginx/conf.d/default.conf COPY nginx.conf /etc/nginx/conf.d/default.conf

View File

@@ -74,6 +74,6 @@
</div> </div>
</div> </div>
<script src="chatv2.js"></script> <script src="chatv3.js"></script>
</body> </body>
</html> </html>

View File

@@ -20,8 +20,8 @@ server {
try_files /style.css =204; try_files /style.css =204;
} }
location = chatv2.js { location = chatv3.js {
try_files /chatv2.js =204; try_files /chatv3.js =204;
} }
# Custom 404 page # Custom 404 page