Merge branch 'staging' of git.disroot.org:Disroot-Ansible/etherpad into staging

This commit is contained in:
muppeth 2024-06-04 00:06:28 +02:00
commit a3b5fc1eab
2 changed files with 32 additions and 1 deletions

View file

@ -1,6 +1,6 @@
---
etherpad_version: '2.0.2'
etherpad_version: '2.0.3'
etherpad_skin: 'colibris'
etherpad_skinVariants: 'super-light-toolbar super-light-editor light-background'
etherpad_username: 'etherpad'

View file

@ -665,4 +665,35 @@
* Enable/Disable case-insensitive pad names.
*/
"lowerCasePadIds": false
/*"sso": {
"issuer": "${SSO_ISSUER:http://localhost:9001}",
"clients": [
{
"client_id": "${ADMIN_CLIENT:admin_client}",
"client_secret": "${ADMIN_SECRET:admin}",
"grant_types": ["authorization_code"],
"response_types": ["code"],
"redirect_uris": ["${ADMIN_REDIRECT:http://localhost:9001/admin/}"]
},
{
"client_id": "${USER_CLIENT:user_client}",
"client_secret": "${USER_SECRET:user}",
"grant_types": ["authorization_code"],
"response_types": ["code"],
"redirect_uris": ["${USER_REDIRECT:http://localhost:9001/}"]
}
]
}
*/
/* Set the time to live for the tokens
This is the time of seconds a user is logged into Etherpad
"ttl": {
"AccessToken": 3600,
"AuthorizationCode": 600,
"ClientCredentials": 3600,
"IdToken": 3600,
"RefreshToken": 86400
}
*/
}