Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kwiesmueller/docker-nginx-index


https://github.com/kwiesmueller/docker-nginx-index

Last synced: 10 days ago
JSON representation

Awesome Lists containing this project

README

        

# Nginx AutoIndex

Forked from https://bitbucket.org/jrelva/docker-nginx-index

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;
}

#### kwiesmueller/nginx-autoindex:latest

location / {
root /usr/share/nginx/html;
autoindex on;
}