server {
listen 8711;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
#nginx指定下载目录的配置
location /file{
charset gbk;
alias D:\local\file;
if ($request_filename ~* ^.*?\.(txt)$){
add_header Content-Disposition 'attachment';
add_header Content-Type: 'APPLICATION/OCTET-STREAM';}
autoindex on;
autoindex_exact_size off;
autoindex_localtime on;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}