·您当前的位置:首页 > 技术教程 > nginx教程 >

[Nginx]开启Nginx的目录文件列表功能

时间:2014-09-19 08:33酷播
ngx_http_autoindex_module 此模块用于自动生成目录列表,ngx_http_autoindex_module只在 ngx_http_index_module模块未找到索引文件时发出请求.

ngx_http_autoindex_module  此模块用于自动生成目录列表,ngx_http_autoindex_module只在 ngx_http_index_module模块未找到索引文件时发出请求.

nginx默认是不允许列出整个目录的。

开启目录列表:
打开nginx.conf文件,在location server 或 http段中加入
 autoindex on;

  1. http { 
  2.     include       mime.types; 
  3.     default_type  application/octet-stream; 
  4.  
  5.     autoindex on;//自动显示目录 
  6.     autoindex_exact_size off;//人性化方式显示文件大小否则以byte显示 
  7.     autoindex_localtime on;//按服务器时间显示,否则以gmt时间显示 
  8.  
  9.     server_names_hash_bucket_size 128; 
  10.     client_header_buffer_size 32k; 
  11.     large_client_header_buffers 4 32k; 
  12.     client_max_body_size 8m; 
  13.     limit_zone one $binary_remote_addr 32k; 
  14.  
  15.     sendfile        on; 
  16.     tcp_nopush     on; 
  17.  
  18.     keepalive_timeout  60; 
  19.     tcp_nodelay on; 
  20.  
  21.     gzip  on; 
  22.     gzip_min_length  1k; 
  23.     gzip_buffers     4 16k; 
  24.     gzip_http_version 1.0; 
  25.     gzip_comp_level 2; 
  26.     gzip_types       text/plain application/x-javascript text/css application/xml; 
  27.     gzip_vary on; 
  28.  
  29.     log_format  wwwlogs  '$remote_addr - $remote_user [$time_local] $request $status $body_bytes_sent $http_referer $http_user_agent $http_x_forwarded_for'; 
  30.     #include default.conf; 
  31.     include vhost/*.conf; 

另外两个参数最好也加上去:
autoindex_exact_size off;
默认为on,显示出文件的确切大小,单位是bytes。
改为off后,显示出文件的大概大小,单位是kB或者MB或者GB
autoindex_localtime on;
默认为off,显示的文件时间为GMT时间。
改为on后,显示的文件时间为文件的服务器时间

配置Nginx目录列表的方法详细参照:http://wiki.nginx.org/NginxChsHttpAutoindexModule

如果想希望目录列表支持header,footer则可以安装三方插件: http://wiki.nginx.org/NginxNgxFancyIndex

热门文章推荐

请稍候...

保利威视云平台-轻松实现点播直播视频应用

酷播云数据统计分析跨平台播放器