fix web ui multiple variables and add default error pages

This commit is contained in:
bunkerity
2021-06-02 15:33:42 +02:00
parent 445032406b
commit 8cda1baf77
22 changed files with 279 additions and 12 deletions

23
defaults/errors/500.html Normal file
View File

@@ -0,0 +1,23 @@
<html>
<head>
<title>500 - Internal Server Error</title>
<style>
body {
background-color: #1d70b7;
}
.centered {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
}
</style>
</head>
<body>
<div class="centered" style="color: white;">
<h1>500 - Internal Server Error</h1>
&#128737;&#65039; this website is protected with <a href="https://github.com/bunkerity/bunkerized-nginx" target="_blank">bunkerized-nginx</a> &#128737;&#65039;
</div>
</body>
</html>