location /download/ {
    root html;
    limit_rate 100k;      #限制用户的速率为100KB/s
    limit_rate_after 5m;   #当用户下载5m内容时,开始限速
    
    autoindex on;                        # 显示目录
    autoindex_exact_size off;    # 显示文件大小(实际大小,单位是bytes,默认为on),当设置为off时,以M/K为单位显示大小。
    autoindex_localtime on;      # 显示文件时间(默认为off,显示的GMT时间),可以设置为on,则显示的是localtime时间。
 }