mirror of
https://github.com/YunoHost-Apps/etherpad_ynh.git
synced 2024-09-03 18:36:10 +02:00
Update settings.json
This commit is contained in:
parent
3c30c09b27
commit
9ed71d759a
1 changed files with 32 additions and 9 deletions
|
@ -292,14 +292,6 @@
|
||||||
*/
|
*/
|
||||||
"soffice": null,
|
"soffice": null,
|
||||||
|
|
||||||
/*
|
|
||||||
* Path to the Tidy executable.
|
|
||||||
*
|
|
||||||
* Tidy is used to improve the quality of exported pads.
|
|
||||||
* Setting it to null disables Tidy.
|
|
||||||
*/
|
|
||||||
"tidyHtml": null,
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Allow import of file types other than the supported ones:
|
* Allow import of file types other than the supported ones:
|
||||||
* txt, doc, docx, rtf, odt, html & htm
|
* txt, doc, docx, rtf, odt, html & htm
|
||||||
|
@ -627,5 +619,36 @@
|
||||||
/*
|
/*
|
||||||
* Enable/Disable case-insensitive pad names.
|
* Enable/Disable case-insensitive pad names.
|
||||||
*/
|
*/
|
||||||
"lowerCasePadIds": false
|
"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
|
||||||
|
}
|
||||||
|
*/
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue