chore: update 8 file(s)

This commit is contained in:
mike
2025-12-28 07:59:46 +01:00
parent 19acb7ef15
commit 5805f1e81c
8 changed files with 5 additions and 9 deletions

View File

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

View File

@@ -16,8 +16,8 @@ server {
log_not_found off; log_not_found off;
} }
location = style.css { location = style2.css {
try_files /style.css =204; try_files /style2.css =204;
} }
location = chatv3.js { location = chatv3.js {
@@ -53,7 +53,7 @@ server {
# Proxy API requests to stoic.lan (192.168.1.159) # Proxy API requests to stoic.lan (192.168.1.159)
location /api/stoic/ { location /api/stoic/ {
proxy_pass http://192.168.1.159:1234/v1/; proxy_pass http://192.168.1.159:8081/v1/;
proxy_set_header Host $host; proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

View File

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

Before

Width:  |  Height:  |  Size: 174 KiB

After

Width:  |  Height:  |  Size: 174 KiB

View File

@@ -4,7 +4,7 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chat</title> <title>Chat</title>
<link rel="stylesheet" href="style.css"> <link rel="stylesheet" href="style2.css">
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.8.0/styles/github-dark.min.css"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.8.0/styles/github-dark.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.8.0/highlight.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.8.0/highlight.min.js"></script>