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 --- .../httpd_site_healthcheck/templates/httpd.conf.j2 | 6 ++++ .../httpd_site_healthcheck/templates/index.html.j2 | 34 ++++++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 roles/httpd_site_healthcheck/templates/httpd.conf.j2 create mode 100644 roles/httpd_site_healthcheck/templates/index.html.j2 (limited to 'roles/httpd_site_healthcheck/templates') diff --git a/roles/httpd_site_healthcheck/templates/httpd.conf.j2 b/roles/httpd_site_healthcheck/templates/httpd.conf.j2 new file mode 100644 index 0000000..17ffd04 --- /dev/null +++ b/roles/httpd_site_healthcheck/templates/httpd.conf.j2 @@ -0,0 +1,6 @@ +# managed by Ansible + +server "healthcheck" { + listen on * port 8000 + root "/htdocs/healthcheck" +} diff --git a/roles/httpd_site_healthcheck/templates/index.html.j2 b/roles/httpd_site_healthcheck/templates/index.html.j2 new file mode 100644 index 0000000..c52ff41 --- /dev/null +++ b/roles/httpd_site_healthcheck/templates/index.html.j2 @@ -0,0 +1,34 @@ + + + +{{ inventory_hostname }} - healtcheck + + + +

{{ inventory_hostname }} - healtcheck

+
+
Thank you for using {{ inventory_hostname }}.
+ + -- cgit v1.2.3