FileBrowser安装使用
套话 简约,极简主义 同样,文件服务器也要轻量 因此放弃了 min.io 尝试使用 FileBrowser 安装 curl -fsSL https://raw.githubusercontent.com/filebrowser/get/master/get.sh | bash 配置 创建配置数据库:filebrowser -d /etc/filebrowser.db config init 设置监听地址:filebrowser -d /etc/filebrowser.db config set --address 0.0.0.0 设置监听端口:filebrowser -d /etc/filebrowser.db config set --port 8080 设置语言环境:filebrowser -d /etc/filebrowser.db config set --locale zh-cn 设置日志位置:filebrowser -d /etc/filebrowser.db config set --log /var/log/filebrowser.log 添加一个用户:filebrowser -d /etc/filebrowser.db users add chunxiao.li 123456 --perm.admin 启动 filebrowser -d /etc/filebrowser.db 后台启动: nohup filebrowser -d /etc/filebrowser.db 2>&1 & 使用 ip + 端口即可访问 注意有防火墙的放开对应端口 使用刚才创建的账号密码登录 ...