1
2
3
4
5
6
7
8
9
10
11
12
13
server {
listen 80;
server_name www.avenger.com; //在host中把这个地址设置为127.0.0.1
index index.html index.htm;

autoindex on;
autoindex_exact_size on;
autoindex_localtime on;

location / {
root D:/work/code/fed-static;
}
}