30 lines
930 B
HTML
30 lines
930 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Welcome to Helix Proxy</title>
|
|
<style>
|
|
:root { color-scheme: light dark; }
|
|
body {
|
|
font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
|
|
line-height: 1.5;
|
|
max-width: 42rem;
|
|
margin: 4rem auto;
|
|
padding: 0 1.5rem;
|
|
color: #e4e4e7;
|
|
background: #09090b;
|
|
}
|
|
h1 { font-size: 1.75rem; font-weight: 600; margin: 0 0 0.75rem; color: #fafafa; }
|
|
p { margin: 0.5rem 0; color: #a1a1aa; }
|
|
code { background: #18181b; padding: 0.15rem 0.4rem; border-radius: 0.25rem; font-size: 0.9em; }
|
|
.host { color: #34d399; font-weight: 500; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Welcome to Helix Proxy</h1>
|
|
<p>No virtual host is configured for <span class="host">{{HOST}}</span>.</p>
|
|
<p>Open the admin UI to add proxy hosts, certificates, and streams.</p>
|
|
</body>
|
|
</html>
|