75 lines
1.6 KiB
HTML
75 lines
1.6 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 B</title>
|
|
<style>
|
|
:root {
|
|
--bg: #1e1308;
|
|
--card: #3a2412;
|
|
--line: #8a5b34;
|
|
--text: #fff4ea;
|
|
--muted: #f0d5bf;
|
|
--accent: #ffd166;
|
|
}
|
|
|
|
* {
|
|
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, #5a371d, 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);
|
|
}
|
|
|
|
code {
|
|
background: #2a190d;
|
|
border: 1px solid #7d4f29;
|
|
border-radius: 6px;
|
|
padding: 0.1rem 0.35rem;
|
|
}
|
|
|
|
.tag {
|
|
display: inline-block;
|
|
background: var(--accent);
|
|
color: #3a2300;
|
|
border-radius: 999px;
|
|
padding: 0.15rem 0.55rem;
|
|
font-weight: 700;
|
|
font-size: 0.85rem;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<span class="tag">Backend B</span>
|
|
<h1>Reverse Proxy Target B</h1>
|
|
<p>This page is served by backend B and reached through Nginx reverse proxy.</p>
|
|
<p>Route example: <code>/service/b</code></p>
|
|
</main>
|
|
</body>
|
|
</html>
|