From c328dae4c298589f87a2255d9ef14895c66561f8 Mon Sep 17 00:00:00 2001 From: cnphpbb Date: Sun, 31 Aug 2025 23:45:47 +0800 Subject: [PATCH] =?UTF-8?q?chore(dufs):=20=E6=9B=B4=E6=96=B0=E9=85=8D?= =?UTF-8?q?=E7=BD=AE=E6=96=87=E4=BB=B6=E5=92=8C=E7=8E=AF=E5=A2=83=E5=8F=98?= =?UTF-8?q?=E9=87=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 升级 Dufs 镜像版本至 v0.44.0 - 在隐藏文件列表中添加更多常见忽略文件 - 添加 TLS 密钥配置项 --- dufs/config/config.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/dufs/config/config.yaml b/dufs/config/config.yaml index f46442a..778b139 100644 --- a/dufs/config/config.yaml +++ b/dufs/config/config.yaml @@ -6,6 +6,11 @@ hidden: - tmp - '*.log' - '*.lock' + - '.git' + - '*.db' + - '.DS_Store' + - '.svn' + auth: - admin:admin@/:rw - user:pass@/backups:rw,/shared @@ -20,6 +25,9 @@ enable-cors: true render-index: true render-try-index: true render-spa: true +#assets: ./assets/ log-format: '$remote_addr "$request" $status $http_user_agent' log-file: ./dufs.log compress: low +##tls-cert: tests/data/cert.pem +tls-key: tests/data/key_pkcs1.pem