设为首页 加入收藏

TOP

Nginx下载服务器配置文件
2019-09-03 01:26:48 】 浏览:8
Tags:Nginx 下载 服务器 配置 文件
 1     server {
 2         listen 8080;
 3         server_name localhost;
 4 
 5         #charset koi8-r;
 6         charset utf-8;
 7 
 8         #access_log logs/host.access.log main;
 9 
10         location / {
11             #root html;
12             #index index.html index.htm;
13 
14             if ($request_filename ~* ^.*?\.(txt|doc|pdf|rar|gz|zip|docx|exe|xlsx|ppt|pptx)$){
15             add_header Content-Disposition: 'attachment;';
16             }
17         }
18         #error_page 404 /404.html;
19 
20         # redirect server error pages to the static page /50x.html
21         #
22         error_page 500 502 503 504 /50x.html;
23         location = /50x.html {
24             root html;
25         }
26     }
View Code

 

】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
上一篇lock了mutex的线程退出了却没有un.. 下一篇VM无法连接到虚拟机

最新文章

热门文章

Hot 文章

Python

C 语言

C++基础

大数据基础

linux编程基础

C/C++面试题目