server.php
- Pfad:
public/static-docs/online/server/server.php - Namespace: -
- Zeilen: 50 | Größe: 1,301 Bytes
- Geändert: 2025-12-22 08:32:48 | Gescannt: 2025-12-31 10:22:15
Code Hygiene Score: 100
- Dependencies: 100 (25%)
- LOC: 100 (20%)
- Methods: 100 (20%)
- Secrets: 100 (15%)
- Classes: 100 (10%)
- Magic Numbers: 100 (10%)
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>