Lists all files and directories in the given path.
docker build -t autoindex .
docker run --rm -it \
-p 8080:8080 \
-v `pwd`/files:/files \
-e AUTOINDEX_ROOT=/files autoindex
upstream autoindexer {
server 192.168.1.80:8080;
}
server {
listen 80;
server_name example.tld;
location / {
proxy_pass http://autoindexer;
}
}
Content type
Image
Digest
Size
2.7 MB
Last updated
over 8 years ago
docker pull davidsteinsland/httpautoindex