Option to enable autoindex
diff --git a/nginx/files/static.conf b/nginx/files/static.conf
index 308e207..f6c8006 100644
--- a/nginx/files/static.conf
+++ b/nginx/files/static.conf
@@ -14,6 +14,9 @@
     {%- endif %}
 
     index  index.html  index.htm;
+    {%- if site.get('autoindex', False) %}
+    autoindex on;
+    {%- endif %}
 
     {%- if site.webdav is defined %}