Files
htl-reverse-proxy-tls-lab/backends/a2/index.html
T

48 lines
1.1 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Backend A2</title>
<style>
:root {
--bg: #102335;
--card: #1d3f61;
--line: #4f86b3;
--text: #e9f2fb;
--muted: #c0d5e8;
}
* { box-sizing: border-box; }
body {
margin: 0;
min-height: 100vh;
display: grid;
place-items: center;
padding: 1rem;
font-family: "Fira Sans", "Segoe UI", sans-serif;
color: var(--text);
background: radial-gradient(circle at top left, #315e86, var(--bg) 60%);
}
main {
width: min(760px, 100%);
background: var(--card);
border: 1px solid var(--line);
border-radius: 14px;
padding: 1.1rem;
}
h1 { margin-top: 0; }
p { color: var(--muted); }
</style>
</head>
<body>
<main>
<h1>Reverse Proxy Target A2</h1>
<p>Use this page to validate load balancing between backend-a and backend-a2.</p>
</main>
</body>
</html>