From 1db6aa5d8167b997924e4b78fdf1c6b8640db8fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romain=20Gon=C3=A7alves?= Date: Tue, 21 Dec 2021 17:14:36 +0000 Subject: roles/httpd: Add healthcheck subrole --- roles/httpd_site_healthcheck/tasks/main.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 roles/httpd_site_healthcheck/tasks/main.yml (limited to 'roles/httpd_site_healthcheck/tasks') diff --git a/roles/httpd_site_healthcheck/tasks/main.yml b/roles/httpd_site_healthcheck/tasks/main.yml new file mode 100644 index 0000000..10cd3c8 --- /dev/null +++ b/roles/httpd_site_healthcheck/tasks/main.yml @@ -0,0 +1,23 @@ +- name: create httpd healthcheck directory + file: + path: "{{ httpd_chroot }}/htdocs/healthcheck" + owner: "{{ httpd_user }}" + group: "{{ httpd_group }}" + mode: 0550 + state: directory + +- name: generate generate httpd healthcheck html index + template: + src: index.html.j2 + dest: "{{ httpd_chroot }}/htdocs/healthcheck/index.html" + owner: "{{ httpd_user }}" + group: "{{ httpd_group }}" + mode: 0440 + +- name: generate httpd healthcheck configuration + template: + src: httpd.conf.j2 + dest: "{{ httpd_configuration_dir }}/healthcheck.conf" + owner: 0 + group: 0 + mode: 0644 -- cgit v1.2.3