test 3
This commit is contained in:
parent
77bb8de20c
commit
9e42053523
2 changed files with 2 additions and 2 deletions
40
custom/proxy/config/error_pages/50x.html
Normal file
40
custom/proxy/config/error_pages/50x.html
Normal file
|
@ -0,0 +1,40 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>503 Error</title>
|
||||
<style>
|
||||
:root {
|
||||
--background: #1e1e1e;
|
||||
--foreground: #d4d4d4;
|
||||
--accent: #007acc;
|
||||
}
|
||||
|
||||
body {
|
||||
display: grid;
|
||||
place-items: center;
|
||||
background: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
||||
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>503 Error</h1>
|
||||
<p>Sorry, the server is currently unavailable. Please try again later.</p>
|
||||
</body>
|
||||
</html>
|
Reference in a new issue