mirror of
https://github.com/bendtherules/ask262.git
synced 2026-08-18 21:31:46 +00:00
13 lines
258 B
Plaintext
13 lines
258 B
Plaintext
# Logrotate configuration for ask262 MCP server
|
|
# Rotates logs at 100MB, keeps 10 rotated files, compresses old ones
|
|
|
|
${ASK262_LOG_DIR}/ask262.jsonl {
|
|
size 100M
|
|
rotate 10
|
|
compress
|
|
delaycompress
|
|
copytruncate
|
|
notifempty
|
|
missingok
|
|
}
|