This repository has been archived on 2023-05-02. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
neo/custom/proxy/config/error_pages/50x.html
2023-02-19 14:51:15 +01:00

30 lines
No EOL
624 B
HTML

<html>
<head>
<title>50x Error</title>
<style>
:root {
--background: #1e1e1e;
--foreground: #d4d4d4;
--accent: #007acc;
}
body {
background-color: var(--background);
color: var(--foreground);
}
h1 {
color: var(--accent);
}
p {
color: var(--foreground);
}
</style>
</head>
<body>
<h1>50x Error</h1>
<p>Sorry, something went wrong on the server.</p><br/>
<p>This usually means that there is a service booting or such...</p>
</body>
</html>