「nginx学習」ngx_http_autoindex_moduleを利用してディレクトリファイルリストを有効する方法

1.ファイル:
nginx.conf

2.設定内容:
http {
include mime.types;
default_type application/octet-stream;

autoindex on; //ディレクトリを自動的に表示
autoindex_exact_size off;//ファイルのサイズを表示
autoindex_localtime on;//サーバーの時刻を表示

server_names_hash_bucket_size 128;
client_header_buffer_size 32k;
large_client_header_buffers 4 32k;
client_max_body_size 8m;
limit_zone one $binary_remote_addr 32k;

sendfile on;
tcp_nopush on;

keepalive_timeout 60;
tcp_nodelay on;

gzip on;
gzip_min_length 1k;
gzip_buffers 4 16k;
gzip_http_version 1.0;
gzip_comp_level 2;
gzip_types text/plain application/x-javascript text/css application/xml;
gzip_vary on;

log_format wwwlogs '$remote_addr – $remote_user [$time_local] $request $status $body_bytes_sent $http_referer $http_user_agent $http_x_forwarded_for’;
#include default.conf;
include vhost/*.conf;
}

Nginx

Posted by arkgame