Ansible-Roles/roles/nginx/tasks/nginx-logrotate.yml
2026-05-08 22:12:36 +03:00

26 lines
753 B
YAML

---
- name: Configure logrotate
tags: [nginx, nginx_conf, nginx_logrotate]
block:
- name: Manage the log rotate size
ansible.builtin.lineinfile:
path: /etc/logrotate.d/nginx
insertbefore: notifempty
unsafe_writes: false
create: false
state: present
firstmatch: true
regexp: maxsize.*$
line: " maxsize {{ nginx_logrotate_maxfilesize }}"
- name: Manage the log rotate size
ansible.builtin.lineinfile:
path: /etc/logrotate.d/nginx
insertbefore: notifempty
unsafe_writes: false
create: false
state: present
firstmatch: true
regexp: rotate.*$
line: " rotate {{ nginx_logrotate_retention }}"