Nginx开启文件目录列表显示功能
Nginx开启文件目录列表显示功能
因为最近在搭建基于http的yum源服务器,想让nginx显示文件目录列表,经过查阅资料,发现该功能默认是关闭的,需要手动开启。
vi /application/nginx/conf/nginx.conf
#编辑nginx配置文件,在标签内添加如下代码:
autoindex on;
autoindex_exact_size off;
autoindex_localtime on;
代码意义
Ø autoindex on #开启目录显示功能
Ø autoindex_exact_size off #关闭详细文件大小统计,默认为b,以kb、mb、gb为单位显示
Ø autoindex_localtime on #开启以服务器时区显示文件修改日期
注意:该代码可在http{}、server{}、location{}代码块显示