71 lines
1.6 KiB
HTML
71 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>502 Bad Gateway</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f8f9fa;
|
|
color: #343a40;
|
|
text-align: center;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
min-height: 100vh;
|
|
margin: 0;
|
|
}
|
|
.container {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
h1 {
|
|
font-size: 2.5em;
|
|
margin-bottom: 20px;
|
|
}
|
|
p {
|
|
font-size: 1.2em;
|
|
margin-bottom: 30px;
|
|
}
|
|
.footer {
|
|
font-size: 0.9em;
|
|
color: #6c757d;
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
background-color: #ffffff;
|
|
padding: 10px 0;
|
|
box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
|
|
}
|
|
@media (max-width: 600px) {
|
|
h1 {
|
|
font-size: 2em;
|
|
}
|
|
p {
|
|
font-size: 1em;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>502 Bad Gateway</h1>
|
|
<h2>Proxy Error</h2>
|
|
<p>
|
|
Oops! The server received an invalid response from an inbound server.
|
|
</p>
|
|
</div>
|
|
<div class="footer">
|
|
<p>
|
|
Why did the server go to counseling? It couldn't find a good gateway to
|
|
communicate!
|
|
</p>
|
|
</div>
|
|
</body>
|
|
</html>
|