ansible-base/roles/owncloud-and-nginx/cfg.schema.json
Christian Fraß 33491acb37 [int]
2025-10-08 11:20:09 +02:00

29 lines
403 B
JSON

{
"nullable": false,
"type": "object",
"properties": {
"domain": {
"nullable": false,
"type": "string"
},
"tls_mode": {
"nullable": false,
"type": "string",
"enum": [
"disable",
"enable",
"force"
],
"default": "force"
},
"maximum_upload_size": {
"type": "string",
"default": "1G"
}
},
"additionalProperties": false,
"required": [
"domain"
]
}