音乐openlist代理

This commit is contained in:
mtvpls
2026-02-03 20:37:01 +08:00
parent 54cdd87bcc
commit ec1ebb750c
5 changed files with 187 additions and 1 deletions

View File

@@ -247,6 +247,7 @@ export interface AdminConfig {
OpenListCacheUsername?: string; // OpenList用户名
OpenListCachePassword?: string; // OpenList密码
OpenListCachePath?: string; // OpenList缓存目录路径
OpenListCacheProxyEnabled?: boolean; // 启用缓存代理返回(默认开启)
};
}

View File

@@ -553,6 +553,7 @@ export function configSelfCheck(adminConfig: AdminConfig): AdminConfig {
OpenListCacheUsername: '',
OpenListCachePassword: '',
OpenListCachePath: '/music-cache',
OpenListCacheProxyEnabled: true,
};
}