官方文档 https://nginx.org/en/docs/http/ngx_http_autoindex_module.html
    官方案例

    1. Example Configuration
    2. location /list {
    3. autoindex on;
    4. }
    5. Directives
    6. Syntax: autoindex on | off;
    7. Default:
    8. autoindex off;
    9. Context: http, server, location

    那么 在配置文件中加上 autoindex on; 然后重启nginx之后 即可正常使用列表功能
    image.png