Skip to content

Instantly share code, notes, and snippets.

View netcan's full-sized avatar

Netcan netcan

View GitHub Profile
@netcan
netcan / my_site.conf
Created December 2, 2016 11:17 — forked from lixingcong/my_site.conf
nginx autoindex timezone setting
location ^~ /demo {
alias /var/www/demo/;
autoindex on;
# set to on means use localtime
autoindex_localtime on;
# show size with unit 'MB' instead of 'Byte'
autoindex_exact_size off;
}