Last active
October 18, 2022 06:23
-
-
Save lixingcong/e6987f83c9e7b226f976876f5c68f928 to your computer and use it in GitHub Desktop.
nginx autoindex timezone setting
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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