Add secrets.keys_dir config option

This commit is contained in:
Kai A. Hiller
2025-08-06 15:21:30 +02:00
parent 42a73dd07f
commit db8555a589
3 changed files with 237 additions and 17 deletions

View File

@@ -1528,14 +1528,6 @@
"description": "Application secrets",
"type": "object",
"properties": {
"keys": {
"description": "List of private keys to use for signing and encrypting payloads",
"default": [],
"type": "array",
"items": {
"$ref": "#/definitions/KeyConfig"
}
},
"encryption_file": {
"description": "File containing the encryption key for secure cookies.",
"type": "string"
@@ -1547,6 +1539,17 @@
],
"type": "string",
"pattern": "[0-9a-fA-F]{64}"
},
"keys": {
"description": "List of private keys to use for signing and encrypting payloads.",
"type": "array",
"items": {
"$ref": "#/definitions/KeyConfig"
}
},
"keys_dir": {
"description": "Directory of private keys to use for signing and encrypting payloads.",
"type": "string"
}
}
},