ansible-playbooks

another attempt to have everything organized ...
git clone https://git.e1e0.net/ansible-playbooks.git
Log | Files | Refs | README | LICENSE

commit 0529eb9dcca0b7582b86faf0148547ddceb7a84d
parent 1b09d31d2770e8dc52f3e078bd348079a2578466
Author: Paco Esteban <paco@e1e0.net>
Date:   Mon, 18 May 2020 19:00:24 +0200

httpd:  all vhosts to one log file

I do not have that much traffic, and each line is identified by it's
vhost anyway, so I can grep.

Diffstat:
Mroles/httpd/templates/https-host.conf.j2 | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/roles/httpd/templates/https-host.conf.j2 b/roles/httpd/templates/https-host.conf.j2 @@ -15,8 +15,8 @@ server "{{ item.server_name }}" { no log {% else %} log { - access "{{ item.server_name }}.access.log" - error "{{ item.server_name }}.error.log" + access "access.log" + error "error.log" style combined } {% endif %}