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

8 lines
264 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 15:31:44 +00:00
$site = $environment['SITE_NAME'] ?? 'unknown';
$server = $environment['SERVER_NAME'] ?? gethostname();
printf('<h1>Website %s</h1><p>Running on %s</p>', $site, $server);