New OAUTH2 Docker deployment

This commit is contained in:
mr
2026-02-19 14:57:14 +01:00
parent cbf32fff48
commit 67fc433ab5
6 changed files with 67 additions and 53 deletions

23
docker/tools/clients.json Normal file
View File

@@ -0,0 +1,23 @@
[
{
"client_id": "test-client",
"client_secret": "oc-auth-got-secret",
"client_name": "test-client",
"grant_types": [
"implicit",
"refresh_token",
"authorization_code",
"client_credentials"
],
"response_types": [
"id_token",
"token",
"code"
],
"scope": "openid profile email roles",
"redirect_uris": [
"http://localhost:8094/swagger"
],
"token_endpoint_auth_method": "client_secret_post"
}
]