From 6c492d8183f83142ddba6cd8cda8442bd336091c Mon Sep 17 00:00:00 2001 From: wangbo Date: Thu, 29 Jan 2026 00:34:03 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E6=9B=B4=E6=96=B0=E8=AF=B4?= =?UTF-8?q?=E6=98=8E=E5=92=8C=E6=AD=A5=E9=AA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/README.md b/README.md index 6b2399c..193d4a4 100644 --- a/README.md +++ b/README.md @@ -88,6 +88,26 @@ chmod +x update.sh ## 重要更新记录: + +### 2025.1.29 + +1. 优化日志管理功能,使用单独的容器和模块来进行管理,不占用主进程文件写入性能 +2, 更新步骤: +- 本次docker-compose新增dozzle容器,将docker-compose文件更新到最新 +- 在nginx配置文件中(/etc/nginx/conf.d/easyai-proxy.conf)添加如下配置,具体添加位置参考`easyai-proxy.conf.sample` +```nginx configuration + location /logs-web/ { + proxy_pass http://127.0.0.1:8080/logs-web/; + proxy_redirect off; + proxy_set_header X-Original-Prefix '/logs-web'; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + proxy_set_header Host $host; + } +``` + + ### 2025.12.27 1. 修复挂载报错问题