bw/nginx add first draft of error page
Some checks failed
kunsi/bundlewrap/pipeline/head There was a failure building this commit
Some checks failed
kunsi/bundlewrap/pipeline/head There was a failure building this commit
This commit is contained in:
parent
d9d98116e6
commit
940416c684
1 changed files with 19 additions and 0 deletions
19
data/nginx/files/errorpages/500.html
Normal file
19
data/nginx/files/errorpages/500.html
Normal file
|
@ -0,0 +1,19 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Internal Server Error</title>
|
||||
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>❌</text></svg>">
|
||||
<meta charset="utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<div style="margin-top: 1em; margin-left: auto; margin-right: auto; width: 70%;">
|
||||
<div style="margin-left: auto; margin-right: auto; height: 7em; border-bottom: 10px solid red;">
|
||||
<h1><span style="font-size:3em; vertical-align:middle;">❌</span><span style="vertical-align:middle;">Internal Server Error</span></h1>
|
||||
</div>
|
||||
<div style="margin-left: auto; margin-right: auto;">
|
||||
<p style="font-size:1.5em;">The 500 (Internal Server Error) status code indicates that the server encountered an unexpected condition that prevented it from fulfilling the request.</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
Loading…
Reference in a new issue