在站点配置文件加入此代码

location ~ (.db)$ {
    return 404;
}

若还有其他不允许被查看的文件,如 .key,如此增加即可

location ~ (.db|.key)$ {
    return 404;
}

标签: none

添加新评论