feat(nginx): add hello world html template for nginx server

This commit is contained in:
Richard
2026-07-29 09:10:15 +02:00
parent d46907850b
commit dcbf28a48d
+11
View File
@@ -0,0 +1,11 @@
<html>
<head>
<title>Hello World</title>
</head>
<body>
<h1>Hello World</h1>
<p>This is {{ ansible_hostname }}</p>
<p>Listening on {{ private_ip_nginx }}</p>
<p>Behind Reverseproxy from Caddy</p>
</body>
</html>