server {
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
root /data/www;# Load configuration files for the default server block.
include /etc/nginx/default.d/*.conf;location / {
#打开目录浏览功能
autoindex on;#解决中文目录乱码问题
charset utf-8,gbk;#显示文件大小,以M,G单位显示
autoindex_exact_size off;
}error_page 404 /404.html;
location = /40x.html {
}error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}