Docker-Swarm-Loadbalancer/tests/testsites/index.php

8 lines
262 B
PHP
Raw Normal View History

<?php
2024-05-18 15:31:44 +00:00
declare(strict_types=1);
$environment = array_merge($_ENV, $_SERVER);
2024-05-18 23:53:03 +00:00
$site = $environment['SITE_NAME'] ?? 'unknown';
$server = $environment['HOSTNAME'] ?? gethostname();
printf("<h1>Website %s</h1>\n<p>Running on %s</p>\n", $site, $server);