Merge of r4835, r4841: improved welcome and 50x error pages.
Maxim Dounin
9 years ago
|
0 |
<!DOCTYPE html>
|
0 | 1 |
<html>
|
1 | 2 |
<head>
|
2 | |
<title>The page is temporarily unavailable</title>
|
|
3 |
<title>Error</title>
|
3 | 4 |
<style>
|
4 | |
body { font-family: Tahoma, Verdana, Arial, sans-serif; }
|
|
5 |
body {
|
|
6 |
width: 35em;
|
|
7 |
margin: 0 auto;
|
|
8 |
font-family: Tahoma, Verdana, Arial, sans-serif;
|
|
9 |
}
|
5 | 10 |
</style>
|
6 | 11 |
</head>
|
7 | |
<body bgcolor="white" text="black">
|
8 | |
<table width="100%" height="100%">
|
9 | |
<tr>
|
10 | |
<td align="center" valign="middle">
|
11 | |
The page you are looking for is temporarily unavailable.<br/>
|
12 | |
Please try again later.
|
13 | |
</td>
|
14 | |
</tr>
|
15 | |
</table>
|
|
12 |
<body>
|
|
13 |
<h1>An error occurred.</h1>
|
|
14 |
<p>Sorry, the page you are looking for is currently unavailable.<br/>
|
|
15 |
Please try again later.</p>
|
|
16 |
<p>If you are the system administrator of this resource then you should check
|
|
17 |
the <a href="http://nginx.org/r/error_log">error log</a> for details.</p>
|
|
18 |
<p><em>Faithfully yours, nginx.</em></p>
|
16 | 19 |
</body>
|
17 | 20 |
</html>
|
|
0 |
<!DOCTYPE html>
|
0 | 1 |
<html>
|
1 | 2 |
<head>
|
2 | 3 |
<title>Welcome to nginx!</title>
|
|
4 |
<style>
|
|
5 |
body {
|
|
6 |
width: 35em;
|
|
7 |
margin: 0 auto;
|
|
8 |
font-family: Tahoma, Verdana, Arial, sans-serif;
|
|
9 |
}
|
|
10 |
</style>
|
3 | 11 |
</head>
|
4 | |
<body bgcolor="white" text="black">
|
5 | |
<center><h1>Welcome to nginx!</h1></center>
|
|
12 |
<body>
|
|
13 |
<h1>Welcome to nginx!</h1>
|
|
14 |
<p>If you see this page, the nginx web server is successfully installed and
|
|
15 |
working. Further configuration is required.</p>
|
|
16 |
|
|
17 |
<p>For online documentation and support please refer to
|
|
18 |
<a href="http://nginx.org/">nginx.org</a>.<br/>
|
|
19 |
Commercial support is available at
|
|
20 |
<a href="http://nginx.com/">nginx.com</a>.</p>
|
|
21 |
|
|
22 |
<p><em>Thank you for using nginx.</em></p>
|
6 | 23 |
</body>
|
7 | 24 |
</html>
|