mirror of
https://github.com/caddyserver/caddy.git
synced 2024-12-04 23:13:45 +08:00
2a127ac3d1
This change is aimed at enhancing the logging module within the Caddyfile directive to allow users to configure logs other than the HTTP access log stream, which is the current capability of the Caddyfile [1]. The intent here is to leverage the same syntax as the server log directive at a global level, so that similar customizations can be added without needing to resort to a JSON-based configuration. Discussion for this approach happened in the referenced issue. Closes https://github.com/caddyserver/caddy/issues/3958 [1] https://caddyserver.com/docs/caddyfile/directives/log
40 lines
543 B
Plaintext
40 lines
543 B
Plaintext
{
|
|
log custom-logger {
|
|
format filter {
|
|
wrap console
|
|
fields {
|
|
common_log delete
|
|
request>remote_addr ip_mask {
|
|
ipv4 24
|
|
ipv6 32
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
----------
|
|
{
|
|
"logging": {
|
|
"logs": {
|
|
"custom-logger": {
|
|
"encoder": {
|
|
"fields": {
|
|
"common_log": {
|
|
"filter": "delete"
|
|
},
|
|
"request\u003eremote_addr": {
|
|
"filter": "ip_mask",
|
|
"ipv4_cidr": 24,
|
|
"ipv6_cidr": 32
|
|
}
|
|
},
|
|
"format": "filter",
|
|
"wrap": {
|
|
"format": "console"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|