server {
        listen       443 ssl;
        server_name  test.com;


        location / {
                # 指定本地目录路径
                # linux目录路径
				# alias /dataxxx/; 
                # windows目录路径
				alias F:\\temp/;
            autoindex on;  # 启用目录浏览
            autoindex_exact_size off;  # 关闭文件大小的精确显示
            autoindex_localtime on;  # 显示文件的本地时间

        }
    }