赞
踩
server {
listen 10086;
server_name localhost;
charset utf-8; # 避免中文乱码
root D:/files; #显示的根索引目录,注意这里要改成你自己的,目录要存在
location / {
index index.html index.htm;
autoindex on; #开启索引功能
autoindex_exact_size off; # 关闭计算文件确切大小(单位bytes),只显示大概大小(单位kb、mb、gb)
autoindex_localtime on; # 显示本机时间而非 GMT 时间
}
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。