11 lines
194 B
YAML
11 lines
194 B
YAML
---
|
|
- name: template nginx log rotation
|
|
become: true
|
|
ansible.builtin.template:
|
|
src: logrotate/nginx.j2
|
|
dest: /etc/logrotate.d/nginx
|
|
mode: 0644
|
|
tags:
|
|
- http
|
|
- logrotate
|