mirror of
https://github.com/Qbix/webserver.git
synced 2026-07-22 07:57:23 +02:00
23 lines
608 B
HTML
23 lines
608 B
HTML
<!DOCTYPE html>
|
|||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<title>Qbix Server</title>
|
||
|
|
<style>
|
||
|
|
body { font-family: system-ui, sans-serif; max-width: 600px; margin: 60px auto; color: #333; }
|
||
|
|
h1 { color: #2563eb; }
|
||
|
|
code { background: #f1f5f9; padding: 2px 6px; border-radius: 3px; }
|
||
|
|
.status { color: #16a34a; }
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<h1>Qbix Server</h1>
|
||
|
|
<p class="status">Server is running.</p>
|
||
|
|
<p>This page is served from the <code>web/</code> directory.</p>
|
||
|
|
<p>Endpoints:</p>
|
||
|
|
<ul>
|
||
|
|
<li><a href="/Q/health">/Q/health</a> — JSON health check</li>
|
||
|
|
<li><a href="/Q/dashboard">/Q/dashboard</a> — Live dashboard</li>
|
||
|
|
</ul>
|
||
|
|
</body>
|
||
|
|
</html>
|