nginx 上的目录列表

Directory listing on ngnix

您好,我正在尝试使用 ngnix 上的目录列表功能列出一组 pdf。

文件位于 /files

我的dockerfile如下

FROM nginx
WORKDIR /files
COPY pdfs /files/

COPY conf.d/default.conf /etc/nginx/conf.d/
EXPOSE 4200 80

ENTRYPOINT ["nginx", "-g", "daemon off;"]

default.conf已修改

server {
    listen       80;
    server_name  localhost;

    #charset koi8-r;
    #access_log  /var/log/nginx/host.access.log  main;

    location / {
        root   /usr/share/nginx/html;
        index  index.html index.htm;
    }

    location /files {
        root /files;
        autoindex on;
    }
    #error_page  404              /404.html;

    # redirect server error pages to the static page /50x.html
    #
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   /usr/share/nginx/html;
    }
}

但是当我点击 http:///localhost/files 时,我得到

404 未找到 nginx/1.19.4

当您在 location /uri/prefix { ... } 下声明根目录 /some/path 时,将在 /some/path/uri/prefix 目录下搜索通过 /uri/prefix/file 请求的任何文件。检查 root and alias nginx 指令之间的区别。您可以使用 alias /files; 指令,也可以尝试使用 root ""; (我想知道它是否有效,但对我来说应该有效)。