nginx配置文件目录

1
2
3
4
5
6
7
8
9
10
11
12
server {
listen 10014;
server_name 127.0.0.1 localhost;
location / {
alias /Users/handsomehan/Documents/;
sendfile on;
autoindex on;
autoindex_exact_size off;
autoindex_localtime on;
charset utf-8,gbk;
}
}