美文网首页
nginx 文件服务器配置

nginx 文件服务器配置

作者: 乔伊斯 | 来源:发表于2017-02-25 11:35 被阅读0次

    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;  ##显示时间

    if ($request_filename ~* ^.*?\.(txt|doc|pdf|rar|gz|zip|docx|exe|xlsx|ppt|pptx)$){

    add_header Content-Disposition: 'attachment;';

    }

    }

    相关文章

      网友评论

          本文标题:nginx 文件服务器配置

          本文链接:https://www.haomeiwen.com/subject/bzwgwttx.html