aaaaaaaaaaaaaaa
This commit is contained in:
parent
544e368d13
commit
7175c9037c
2 changed files with 2 additions and 2 deletions
40
custom/proxy/config/error_pages/unavailable.html
Normal file
40
custom/proxy/config/error_pages/unavailable.html
Normal file
|
@ -0,0 +1,40 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>50x Error</title>
|
||||
<style>
|
||||
:root {
|
||||
--background: #1e1e1e;
|
||||
--foreground: #d4d4d4;
|
||||
--accent: #007acc;
|
||||
}
|
||||
|
||||
body {
|
||||
display: grid;
|
||||
place-items: center;
|
||||
background: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 2em;
|
||||
margin: 0;
|
||||
margin-bottom: 0.5em;
|
||||
}
|
||||
|
||||
p {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
a {
|
||||
color: var(--accent);
|
||||
text-decoration: none;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>50x Error</h1>
|
||||
<p>Sorry, the server is currently unavailable. Please try again later.</p>
|
||||
</body>
|
||||
</html>
|
Reference in a new issue