nginx plain html 部署静态页面
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
hello
</body>
</html>
server{
listen 80;
server_name hello.wiloon.dev;
root /var/www;
index hello.html;
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
hello
</body>
</html>
server{
listen 80;
server_name hello.wiloon.dev;
root /var/www;
index hello.html;
}