在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
为了简单共享文件,有些人使用svn,有些人使用ftp,但是更多得人使用索引(index)功能。apache得索引功能强大,并且也是最常见得,nginx的auto_index实现得目录索引偏少,而且功能非常简单。先来看看我们得效果图。 nginx配置 location ~ ^/2589(/.*) { autoindex on; //开启 autoindex_localtime on;//开启显示功能 } auto_index指令 启用/仅用nginx目录索引功能. 制定是否额外得显示文件得大小,单位为字节,mb,gb等等. 默认是打开得 syntax: autoindex_localtime on | off; 配置段: autoindex_localtime off; 指定是否显示目录或者文件得时间,默认是不显示。
# wget http://gitorious.org/ngx-fancyindex/ngx-fancyindex/archive-tarball/master # tar -xzvf master # wget http://nginx.org/download/nginx-1.4.2.tar.gz # tar -xzvf nginx-1.4.2.tar.gz # cd nginx-1.4.2 # ./configure --prefix=/usr/local/nginx-1.4.2 --add-module=../ngx-fancyindex-ngx-fancyindex # make # make install server { listen 80; server_name test.ogeek.net; access_log /data/logs/nginx/test.ogeek.net.access.log main; index index.html index.php index.html; root /data/site/test.ogeek.net; location / { } location ~ ^/2589(/.*) { fancyindex on; fancyindex_exact_size off; fancyindex_localtime on; fancyindex_footer "myfooter.shtml"; } }
比自带的好看多少,这个不好说...反正就是....变好看了点~ 参数解释: <!-- footer START --> <div id="footer"> <a id="gotop" href="#" onclick="MGJS.goTop();return false;">回到顶部</a> <a id="powered" href="http://wordpress.org/">WordPress</a> <div id="copyright"> 版权所有 © 2006-2015 极客世界 </div> <div id="themeinfo"> <a href="https://www.ogeek.net/about/">关于我们</a> | <a href="https://www.ogeek.net/sitemap.html">网站导航</a> | <a href="https://www.ogeek.net/sitemap.xml">网站地图</a> |<a rel="nofollow" href="http://www.miibeian.gov.cn/">苏ICP备14036222号</a> </div> </div> <!-- footer END --> fancy指令使用: fancyindex *fancyindex* [*on* | *off*] 默认值: fancyindex off *fancyindex_css_href uri* 默认值: fancyindex_css_href "" *fancyindex_exact_size* [*on* | *off*] 默认值: fancyindex_exact_size on *fancyindex_footer path* 默认值: fancyindex_footer "" *fancyindex_header path* 默认值: fancyindex_header "" *fancyindex_ignore string1 [string2 [... stringN]]* 默认值: No default. fancyindex_ignore "dir*" "filea.txt" fancyindex_localtime *fancyindex_localtime* [*on* | *off*] 默认值: fancyindex_localtime off |
请发表评论