nginx plain html 部署静态页面

1
2
3
4
5
6
7
8
9
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
</head>
<body>
hello
</body>
</html>
1
2
3
4
5
6
server{
    listen 80;
    server_name hello.wiloon.dev;
    root /var/www;
    index hello.html;
}