This commit is contained in:
Christian Fraß 2025-10-07 16:04:07 +02:00
parent 4a439cf375
commit 4a7a75651c
4 changed files with 17 additions and 4 deletions

View file

@ -369,7 +369,13 @@
"userinfo"
]
},
"default": null
"default": [
"authorization",
"token",
"revocation",
"introspection",
"userinfo"
]
}
},
"additionalProperties": false,

View file

@ -46,7 +46,13 @@
"custom": {
}
},
"cors_endpoints": null
"cors_endpoints": [
"authorization",
"token",
"revocation",
"introspection",
"userinfo"
]
}
}
}

View file

@ -1,3 +1,4 @@
{
"var_nginx_auto_reload_interval": null
"var_nginx_auto_reload_interval": null,
"var_nginx_dhparam_size": 2048
}

View file

@ -14,7 +14,7 @@
"name": "generate dhparams file",
"become": true,
"ansible.builtin.command": {
"cmd": "openssl dhparam -out /etc/nginx/dhparam 4096"
"cmd": "openssl dhparam -out /etc/nginx/dhparam {{var_nginx_dhparam_size | string}}"
},
"args": {
"creates": "/etc/nginx/dhparam"