mirror of
https://github.com/offen/docker-volume-backup.git
synced 2026-02-03 00:41:10 +08:00
* feat: Add Google Drive storage backend with custom endpoint support - Implement Google Drive storage backend using service account authentication - Add support for custom Google Drive API endpoints for testing - Include comprehensive test setup with mock services - Add configuration options for Google Drive credentials and folder ID - Update documentation with Google Drive configuration examples * remove debug messages * Improve tests * Add mounting tip on documentation * Replace deprecated lib usage * Fix identation * Fix googledrive tests * Fix googledrive support for _FILE credentials * Remove googledrive test unecessary echos
37 lines
953 B
JSON
37 lines
953 B
JSON
{
|
|
"interactiveLogin": true,
|
|
"httpServer": "NettyWrapper",
|
|
"tokenCallbacks": [
|
|
{
|
|
"issuerId": "issuer1",
|
|
"tokenExpiry": 120,
|
|
"requestMappings": [
|
|
{
|
|
"requestParam": "scope",
|
|
"match": "scope1",
|
|
"claims": {
|
|
"sub": "subByScope",
|
|
"aud": [
|
|
"audByScope"
|
|
]
|
|
}
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"issuerId": "issuer2",
|
|
"requestMappings": [
|
|
{
|
|
"requestParam": "someparam",
|
|
"match": "somevalue",
|
|
"claims": {
|
|
"sub": "subBySomeParam",
|
|
"aud": [
|
|
"audBySomeParam"
|
|
]
|
|
}
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|