nginx下载站

 user  nginx;
 worker_processes 1;
 pid       /var/run/nginx.pid;
 events {
    worker_connections 1024;
 }
 http {
    include       /etc/nginx/mime.types;
    default_type application/octet-stream;
    server {
        listen       80;
        server_name localhost;
        charset utf-8,gbk;
         #access_log logs/host.access.log main;
        location / {
            root   html;
            index index.html index.htm;
         }
         
         # 在线观看MP4
        location ~ .*\.mp4 {
                root /data2;
                 #mp4;
         }
         
         # 在线观看flv
        location ~ .*\.flv {
                root /data2;
                 #flv;
         }
         
         # 下载站
        location /down {
            root /data;
            autoindex on;
            autoindex_localtime on;
            autoindex_exact_size off;
         }
 
        error_page   500 502 503 504 /50x.html;
        location = /50x.html {
            root   html;
         }
     }
 }
配置项描述
autoindex on / off 默认 off,不开启目录浏览 on,开启目录浏览
autoindex_exact_size on / off 默认 on,精确文件大小显示,单位Bytes 推荐 off,文件大小显示使用KB/MB/GB单位估算显示
autoindex_format html / xml / json / jsonp 目录列表的显示格式 默认 html
autoindex_localtime on / off 默认 off,显示的文件时间为GMT时间 on,显示的文件时间为文件的服务器时间

这里还需要配置charset使目录支持中文显示,否则中文文件名会产生乱码 charset utf-8,gbk;

 

posted @ 2021-06-20 13:48  1769987233  阅读(54)  评论(0编辑  收藏  举报