500 and 503 error added

This commit is contained in:
ed barz 2023-01-09 22:32:05 +01:00
parent b8a12ba81a
commit 0403bda138
2 changed files with 34 additions and 0 deletions

17
500/index.html Normal file
View File

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html>
<head>
<title>500</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/assets/css/style.css"/>
</head>
<body class="nginx-error">
<h1>500</h1>
<p>Internal Server Error</p>
<p>Well, sorry, I'm sure the thought of browsing this webpage got you pretty excited but you'll have to come back later I guess...</p>
</body>
</html>

17
503/index.html Normal file
View File

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html>
<head>
<title>404</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/assets/css/style.css"/>
</head>
<body class="nginx-error">
<h1>503</h1>
<p>Service Unavailable</p>
<p>Well, sorry, I'm sure the thought of browsing this webpage got you pretty excited but you'll have to come back later I guess...</p>
</body>
</html>