server.php

Code Hygiene Score: 100

Keine Issues gefunden.

Code

<!DOCTYPE html>
<html lang="de">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Server-Dokumentation: st</title>
    <style>
        body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; max-width: 900px; margin: 0 auto; padding: 20px; line-height: 1.6; }
        h1 { border-bottom: 2px solid #333; padding-bottom: 10px; }
        h2 { color: #2c3e50; margin-top: 40px; }
        h3 { color: #34495e; }
        pre { background: #f4f4f4; padding: 15px; overflow-x: auto; border-radius: 5px; }
        code { background: #f4f4f4; padding: 2px 6px; border-radius: 3px; }
        ul { padding-left: 20px; }
        section { margin-bottom: 30px; }
    </style>
</head>
<body>

<h1>Server-Dokumentation: st</h1>
<p>Erstellt: 2025-12-19 | Debian 13 (trixie) | KI-Projekt Server</p>

<?php
$moduleDir = __DIR__ . '/../module/';

$modules = [
    'grundkonfiguration.php',
    'ufw.php',
    'fail2ban.php',
    'apache.php',
    'php.php',
    'mariadb.php',
    'ssl.php',
    'ollama.php',
    'qdrant.php',
    'backup.php',
    'versionen.php',
];

foreach ($modules as $module) {
    $file = $moduleDir . $module;
    if (file_exists($file)) {
        include $file;
    }
}
?>

</body>
</html>
← Übersicht