aboutsummaryrefslogtreecommitdiffstats
path: root/modules/apache/templates/logrotate
diff options
context:
space:
mode:
Diffstat (limited to 'modules/apache/templates/logrotate')
-rw-r--r--modules/apache/templates/logrotate23
1 files changed, 23 insertions, 0 deletions
diff --git a/modules/apache/templates/logrotate b/modules/apache/templates/logrotate
new file mode 100644
index 00000000..823989eb
--- /dev/null
+++ b/modules/apache/templates/logrotate
@@ -0,0 +1,23 @@
+/var/log/httpd/*_log /var/log/httpd/apache_runtime_status /var/log/httpd/ssl_mutex {
+<% if @hostname == 'duvel' %>
+ rotate 60
+ daily
+<% elsif @hostname == 'friteuse' %>
+ # The virtual disk is very small so keep log sizes down
+ rotate 26
+ weekly
+<% elsif @hostname == 'sucuk' %>
+ rotate 52
+ weekly
+<% else %>
+ rotate <%= scope.lookupvar('apache::var::httpdlogs_rotate') %>
+ monthly
+<% end %>
+ missingok
+ notifempty
+ sharedscripts
+ compress
+ postrotate
+ /bin/systemctl restart httpd.service > /dev/null 2>/dev/null || true
+ endscript
+}