Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 860 Bytes

README.md

File metadata and controls

25 lines (17 loc) · 860 Bytes

Nginx AutoIndex

A branch of nginx:latest with autoindex on. Serves all files in /usr/share/nginx/html

nginx:latest

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

jorgeandrada/nginx-autoindex:latest

location / {
    root   /usr/share/nginx/html;
    autoindex on;
}
docker run --name=web -p 8080:80  -h web -v path_web_site:/usr/share/nginx/html -d jorgeandrada/nginx-autoindex