2026-05-21 15:52:36 +08:00
|
|
|
{
|
|
|
|
|
"Logging": {
|
|
|
|
|
"LogLevel": {
|
|
|
|
|
"Default": "Information",
|
|
|
|
|
"Microsoft.AspNetCore": "Warning"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"AllowedHosts": "*",
|
2026-05-22 15:17:59 +08:00
|
|
|
"Server": {
|
|
|
|
|
"HttpPort": 5206,
|
|
|
|
|
"HttpsPort": 7165
|
|
|
|
|
},
|
2026-05-21 15:52:36 +08:00
|
|
|
"Jwt": {
|
2026-05-22 14:29:22 +08:00
|
|
|
"Issuer": "FileShare-API",
|
|
|
|
|
"Audience": "FileShare-Client",
|
2026-05-21 15:52:36 +08:00
|
|
|
"SigningKey": "change-this-development-signing-key-at-least-32-bytes",
|
|
|
|
|
"AccessTokenMinutes": 60,
|
|
|
|
|
"RefreshTokenDays": 30
|
|
|
|
|
},
|
|
|
|
|
"DatabaseConfiguration": {
|
2026-05-21 16:45:56 +08:00
|
|
|
"Provider": "SQLite",
|
|
|
|
|
"ConnectionString": "Data Source=app.db",
|
2026-05-21 15:52:36 +08:00
|
|
|
"AutoMigrate": true,
|
|
|
|
|
"RecreateDatabase": false,
|
|
|
|
|
"EnableDetailedLog": false,
|
|
|
|
|
"Timeout": 30
|
2026-05-22 17:01:49 +08:00
|
|
|
},
|
|
|
|
|
"ThumbnailStorageOptions": {
|
|
|
|
|
"RootPath": "thumbnails",
|
|
|
|
|
"FfmpegPath": "tools/ffmpeg/bin/ffmpeg.exe",
|
|
|
|
|
"FfprobePath": "tools/ffmpeg/bin/ffprobe.exe"
|
2026-05-22 20:09:22 +08:00
|
|
|
},
|
|
|
|
|
"FileLibraryScanOptions": {
|
|
|
|
|
"PollingIntervalMinutes": 5
|
2026-05-21 15:52:36 +08:00
|
|
|
}
|
|
|
|
|
}
|