diff options
Diffstat (limited to 'nginx/arch.conf')
-rw-r--r-- | nginx/arch.conf | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/nginx/arch.conf b/nginx/arch.conf new file mode 100644 index 0000000..c66ad85 --- /dev/null +++ b/nginx/arch.conf @@ -0,0 +1,15 @@ +# vi: ft=nginx + +server { + listen 80; + #server_name localhost; + + location / { + root /srv/arch/; + + autoindex on; + autoindex_exact_size off; + autoindex_format html; + autoindex_localtime on; + } +} |