Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set 30 day retention period for apache logs #3714

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
/var/log/apache2/*.log {
daily
missingok
rotate 30
create 640 root adm
sharedscripts
postrotate
/usr/bin/killall -HUP apache2
endscript
}
Original file line number Diff line number Diff line change
Expand Up @@ -116,3 +116,12 @@
- restart apache2
tags:
- apache

- name: Retain no more than one month of apache logs
copy:
src: apache2-logrotate.conf
dest: /etc/logrotate.d/apache2
owner: root
mode: "0644"
tags:
- apache