27 lines
673 B
HTML
27 lines
673 B
HTML
<!DOCTYPE html>
|
|
<html lang="id">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Hello Homelab</title>
|
|
<style>
|
|
body {
|
|
font-family: system-ui, sans-serif;
|
|
max-width: 40rem;
|
|
margin: 4rem auto;
|
|
padding: 0 1rem;
|
|
line-height: 1.5;
|
|
}
|
|
code {
|
|
background: #eee;
|
|
padding: 0.1rem 0.3rem;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Hello dari homelab</h1>
|
|
<p>Ini halaman statis di Docker di VM Ubuntu (Proxmox).</p>
|
|
<p>Host: <code>ubuntu-vm</code> · Hypervisor: <code>sayudha</code> (PVE 9.2)</p>
|
|
</body>
|
|
</html>
|