git.lirion.de

Of git, get, and gud

aboutsummaryrefslogtreecommitdiffstats
path: root/localfs/etc/logrotate.d/httpd
diff options
context:
space:
mode:
authorHarald Pfeiffer <harald.pfeiffer _ xmart.de> 2018-11-01 13:30:58 +0100
committerHarald Pfeiffer <harald.pfeiffer _ xmart.de> 2018-11-01 13:30:58 +0100
commit0632591996893fe136a1f2fe44d9b9f404f41f3e (patch)
tree7340edbe7c212da3db45a83219147143a3268c8d /localfs/etc/logrotate.d/httpd
downloadfedora-laptop-0632591996893fe136a1f2fe44d9b9f404f41f3e.tar.bz2
Initial commit
Diffstat (limited to 'localfs/etc/logrotate.d/httpd')
-rw-r--r--localfs/etc/logrotate.d/httpd15
1 files changed, 15 insertions, 0 deletions
diff --git a/localfs/etc/logrotate.d/httpd b/localfs/etc/logrotate.d/httpd
new file mode 100644
index 0000000..90c024d
--- /dev/null
+++ b/localfs/etc/logrotate.d/httpd
@@ -0,0 +1,15 @@
+/var/log/httpd/*log {
+ daily
+ rotate 365
+ missingok
+ notifempty
+ sharedscripts
+ delaycompress
+ compresscmd /bin/xz
+ compressext .xz
+ dateext
+ dateformat -%Y-%m-%d
+ postrotate
+ /bin/systemctl reload httpd.service > /dev/null 2>/dev/null || true
+ endscript
+}