Improved 50x error page.
The feature set of the new page: - HTML5 compliant; - Looks similar to the new "Welcome page" (r4835); - Sysadmin hint with a link to the documentation of the "error_log" directive.
This commit is contained in:
parent
215bd2f2ff
commit
306ba2ab4a
1 changed files with 14 additions and 11 deletions
|
@ -1,18 +1,21 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>The page is temporarily unavailable</title>
|
<title>Error</title>
|
||||||
<style>
|
<style>
|
||||||
body { font-family: Tahoma, Verdana, Arial, sans-serif; }
|
body {
|
||||||
|
width: 35em;
|
||||||
|
margin: 0 auto;
|
||||||
|
font-family: Tahoma, Verdana, Arial, sans-serif;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body bgcolor="white" text="black">
|
<body>
|
||||||
<table width="100%" height="100%">
|
<h1>An error occurred.</h1>
|
||||||
<tr>
|
<p>Sorry, the page you are looking for is currently unavailable.<br/>
|
||||||
<td align="center" valign="middle">
|
Please try again later.</p>
|
||||||
The page you are looking for is temporarily unavailable.<br/>
|
<p>If you are the system administrator of this resource then you should check
|
||||||
Please try again later.
|
the <a href="http://nginx.org/r/error_log">error log</a> for details.</p>
|
||||||
</td>
|
<p><em>Faithfully yours, nginx.</em></p>
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Reference in a new issue