Skip to content

Instantly share code, notes, and snippets.

@netcan
Forked from lixingcong/my_site.conf
Created December 2, 2016 11:17
Show Gist options
  • Save netcan/ac2ecaf616b1ec6fbcfe740f43efc2e7 to your computer and use it in GitHub Desktop.
Save netcan/ac2ecaf616b1ec6fbcfe740f43efc2e7 to your computer and use it in GitHub Desktop.
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;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment