13 lines
288 B
Django/Jinja
13 lines
288 B
Django/Jinja
# templates/index.html.j2
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Apache Test Page</title>
|
|
</head>
|
|
<body>
|
|
<h1>Apache is working</h1>
|
|
<p><strong>FQDN:</strong> {{ ansible_facts.fqdn }}</p>
|
|
<p><strong>IPv4 Address:</strong> {{ ansible_facts.default_ipv4.address }}</p>
|
|
</body>
|
|
</html>
|