You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
ansible-role-nginx/lamp_haproxy/roles/web/templates/index.php.j2

16 lines
337 B

<html>
<head>
<title>Ansible Application</title>
</head>
<body>
</br>
<a href=http://{{ hostvars[inventory_hostname]['ansible_' + iface].ipv4.address }}/index.html>Homepage</a>
</br>
<?php
Print "Hello, World! I am a web server deployed using Ansible and I am : ";
echo exec('hostname');
Print "</BR>";
?>
</body>
</html>