mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-07 10:08:27 +01:00
13 lines
323 B
Plaintext
13 lines
323 B
Plaintext
# Example of logrotate file to put into /etc/logrotate.d to make the rotation of
|
|
# the dolibarr log files.
|
|
/home/admin/wwwroot/dolibarr_documents/*.log {
|
|
su admin www-data
|
|
daily
|
|
rotate 7
|
|
compress
|
|
delaycompress
|
|
missingok
|
|
notifempty
|
|
create 660 admin www-data
|
|
}
|