Serving files in a directory with nginx

Published: Jul 14, 2011 by Noe Nieto

I love nginx’s simplicity

Serving files in a directory with nginx

Today I wanted to publish some files in a directory with nginx and I was surprised how easy it was.

All I needed to do was to create a file in /etc/nginx/sites-enabled/newsite and add the following:

server {
    listen 80;
    server_name newsite.mysite.com;
    location / {
        root /path/to/folder/with/files;
        autoindex on;
    }
}

Reload nginx and enjoy.

Share

Latest Posts

Cómo Usar la Librería Tenacity en Python
Cómo Usar la Librería Tenacity en Python

Una pequeña guía para comenzar a usar la librería Tenacity de Python

Convierte texto seleccionado a enlaces en Google Docs
Convierte texto seleccionado a enlaces en Google Docs

Guía para crear un guión de AppsScript que transforme el texto seleccionado en un documento de Google Docs

Nube de palabras en Inkscape
Nube de palabras en Inkscape

Pequeña guía para hacer una nube de palabras (o tag cloud) en Inkscape