server {
listen? ? ? 8888;
server_name? localhost;
#charset koi8-r;
#access_log? logs/host.access.log? main;
location / {
#root? html;
#index? index.html index.htm;
alias "d:/1.1.Software/";
autoindex on; ##顯示索引
autoindex_exact_size on; ##顯示大小
autoindex_localtime on;? ##顯示時(shí)間
if ($request_filename ~* ^.*?\.(txt|doc|pdf|rar|gz|zip|docx|exe|xlsx|ppt|pptx)$){
add_header Content-Disposition: 'attachment;';
}
}