25 lines
715 B
Django/Jinja
25 lines
715 B
Django/Jinja
<html>
|
|
<head>
|
|
<title>Ansible Application</title>
|
|
</head>
|
|
<body>
|
|
</br>
|
|
<a href=http://{{ publicip }}/index.html>Homepage</a>
|
|
</br>
|
|
<?php
|
|
Print "Hello, World! I am a web server configured using Ansible and I am : ";
|
|
echo exec('hostname');
|
|
Print "</BR>";
|
|
echo "List of Databases: </BR>";
|
|
{% for host in groups['dbservers'] %}
|
|
$link = mysqli_connect('{{ databasepublicip }}', '{{ hostvars[host].dbuser }}', '{{ hostvars[host].upassword }}') or die(mysqli_connect_error($link));
|
|
{% endfor %}
|
|
$res = mysqli_query($link, "SHOW DATABASES;");
|
|
while ($row = mysqli_fetch_assoc($res)) {
|
|
echo $row['Database'] . "\n";
|
|
}
|
|
?>
|
|
</body>
|
|
</html>
|
|
|