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
您好,我正在尝试使用 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