nginx index.html内容
时间: 2023-10-09 21:14:20 浏览: 253
Index.html
nginx 默认的 index.html 文件内容通常是一个简单的欢迎页面,其中包含 nginx 的 logo 和一些简单的欢迎语。具体内容如下:
```
<!DOCTYPE html>
<html>
<head>
<title>Welcome to nginx!</title>
<style>
body {
width: 35em;
margin: 0 auto;
font-family: Tahoma, Verdana, Arial, sans-serif;
}
</style>
</head>
<body>
<h1>Welcome to nginx!</h1>
<p>If you see this page, the nginx web server is successfully installed and working. Further configuration is required.</p>
<p>For online documentation and support please refer to <a href="http://nginx.org/">nginx.org</a>.</p>
<p><em>Thank you for using nginx.</em></p>
</body>
</html>
```
这段 HTML 代码会在浏览器中显示一个标题为 "Welcome to nginx!" 的页面,页面中包含一些欢迎语和指向 nginx 官网的链接。如果你想要定制自己的欢迎页面,可以将这段代码替换为自己的 HTML 代码。
阅读全文