tengine 2.3.3 设置日志最大5MB,超过了则建立一个新的日志,日志名字以当前时间结尾,时间格式(2022-01-01 10:10:10.000)
时间: 2023-02-08 19:13:02 浏览: 145
日志文件超大时,需要分割成小文件
在 Tengine 2.3.3 中,可以使用 "error_log" 指令来设置日志文件的大小。具体格式如下:
```error_log /path/to/log/file.log max=5M;```
其中 "/path/to/log/file.log" 是日志文件的路径,"max=5M" 表示文件最大为5MB,当文件超过这个大小时,会建立一个新的日志文件。
需要注意的是,此指令默认是追加日志,如需要每次重写文件 可以加上 'noreopen' 或者 'off'。
如果需要在日志文件名后面加上当前时间,可以使用 "log_format" 指令来设置,例如:
```
log_format custom '$time_local $remote_addr $remote_user $request '
'[$status $bytes_sent $request_time $upstream_response_time $pipe] $request_length $request_time $bytes_sent';
```
其中,time_local 是当前时间,格式为 "2022-01-01 10:10:10.000"
这里只是举例, 实际使用还要根据需求来设置, 你可以通过参考官网来调整这些参数。
阅读全文