diff options
author | Romain Gonçalves <me@rgoncalves.se> | 2024-01-01 13:26:11 +0100 |
---|---|---|
committer | Romain Gonçalves <me@rgoncalves.se> | 2024-01-01 13:26:11 +0100 |
commit | e5a65b550c719f427e0bb46f2e3149092b9e6285 (patch) | |
tree | ad5cbf5cac81b49e104ff0ffb5711e37e7f70285 /roles/httpd_site_healthcheck/templates | |
parent | d5175b4fb930f1ca48e514a4ab8080f050d4c6bc (diff) | |
download | rules-e5a65b550c719f427e0bb46f2e3149092b9e6285.tar.gz |
refactor(roles/httpd): merge httpd roles
Diffstat (limited to 'roles/httpd_site_healthcheck/templates')
-rw-r--r-- | roles/httpd_site_healthcheck/templates/httpd.conf.j2 | 6 | ||||
-rw-r--r-- | roles/httpd_site_healthcheck/templates/index.html.j2 | 34 |
2 files changed, 0 insertions, 40 deletions
diff --git a/roles/httpd_site_healthcheck/templates/httpd.conf.j2 b/roles/httpd_site_healthcheck/templates/httpd.conf.j2 deleted file mode 100644 index 17ffd04..0000000 --- a/roles/httpd_site_healthcheck/templates/httpd.conf.j2 +++ /dev/null @@ -1,6 +0,0 @@ -# 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 deleted file mode 100644 index c52ff41..0000000 --- a/roles/httpd_site_healthcheck/templates/index.html.j2 +++ /dev/null @@ -1,34 +0,0 @@ -<html> -<head> -<meta charset="utf-8"> -<title>{{ inventory_hostname }} - healtcheck</title> -<style> -body { - background-color: white; - color: black; - font-family: 'Comic Sans MS', 'Chalkboard SE', 'Comic Neue', sans-serif; -} - -hr { - border: 0; - border-bottom: 1px dashed; -} - -@media (prefers-color-scheme: dark) { - body { - background-color: #1E1F21; - color: #EEEFF1; - } - - a { - color: #BAD7FF; - } -} -</style> -</head> -<body> -<h1>{{ inventory_hostname }} - healtcheck</h1> -<hr> -<blockquote>Thank you for using {{ inventory_hostname }}.</blockquote> -</body> -</html> |