mirror of
https://github.com/dominikhoebert/docker-projects.git
synced 2026-06-11 22:26:53 +00:00
Füge Konfigurationsdateien für Gatus, Mosquitto, Postgres und MeshDash hinzu; aktualisiere Moodle-Umgebungsvariablen und erstelle Webstack-Dokumentation
This commit is contained in:
13
webstack-task/app/index.html
Normal file
13
webstack-task/app/index.html
Normal file
@@ -0,0 +1,13 @@
|
||||
<!doctype html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<title>Webstack Task</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Webstack Task</h1>
|
||||
<p>Wenn du das siehst, liefert Nginx aus.</p>
|
||||
<p><a href="/index.php">PHP-Test öffnen</a></p>
|
||||
</body>
|
||||
</html>
|
||||
9
webstack-task/app/index.php
Normal file
9
webstack-task/app/index.php
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
header('Content-Type: text/plain; charset=utf-8');
|
||||
|
||||
echo "Webstack läuft.\n";
|
||||
echo "Zeit (Server): " . date('c') . "\n";
|
||||
echo "PHP-Version: " . PHP_VERSION . "\n";
|
||||
Reference in New Issue
Block a user