增加更新说明和步骤
This commit is contained in:
parent
ada28d7d84
commit
6c492d8183
20
README.md
20
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. 修复挂载报错问题
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user