core: 日志网页使用异步刷新

This commit is contained in:
bin456789
2023-10-25 14:19:25 +08:00
parent c0e4423434
commit 7f71f9d962
3 changed files with 127 additions and 32 deletions

17
logviewer-nginx.conf Normal file
View File

@@ -0,0 +1,17 @@
server {
listen 80;
listen [::]:80;
root /;
location = / {
try_files /logviewer.html 404;
}
location = /reinstall.log {
try_files $uri 404;
}
location / {
return 404;
}
}