Skip to content

Instantly share code, notes, and snippets.

@renyuntao
Forked from lixingcong/my_site.conf
Created April 19, 2018 02:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save renyuntao/04d9216d3953440aec1de77aa3be611b to your computer and use it in GitHub Desktop.
Save renyuntao/04d9216d3953440aec1de77aa3be611b 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