-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (43 loc) · 1.18 KB
/
index.html
File metadata and controls
43 lines (43 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome to NginxGo</title>
<style>
body {
font-family: Arial, sans-serif;
max-width: 800px;
margin: 50px auto;
padding: 20px;
background: #f5f5f5;
}
h1 {
color: #333;
border-bottom: 2px solid #4CAF50;
padding-bottom: 10px;
}
.info {
background: #e7f3e7;
padding: 15px;
border-radius: 5px;
margin: 20px 0;
}
code {
background: #f0f0f0;
padding: 2px 6px;
border-radius: 3px;
}
</style>
</head>
<body>
<h1>Welcome to NginxGo!</h1>
<div class="info">
<p><strong>服务器:</strong> NginxGo HTTP Server</p>
<p><strong>版本:</strong> 0.1.0</p>
<p><strong>状态:</strong> 运行中</p>
</div>
<p>This is a simple static file served by <code>NginxGo</code> - A Go implementation of Nginx.</p>
<p>Congratulations! Your server is working correctly.</p>
</body>
</html>