mirror of
https://github.com/YunoHost-Apps/etherpad_mypads_ynh.git
synced 2024-09-03 18:36:09 +02:00
Update credential.json to version 1.8.0
This commit is contained in:
parent
8127cb317a
commit
ce0759d0ad
1 changed files with 29 additions and 4 deletions
|
@ -2,8 +2,23 @@
|
||||||
This file must be valid JSON. But comments are allowed
|
This file must be valid JSON. But comments are allowed
|
||||||
*/
|
*/
|
||||||
{
|
{
|
||||||
//The Type of the database. You can choose between dirty, postgres, sqlite and mysql
|
/*
|
||||||
//You shouldn't use "dirty" for for anything else than testing or development },
|
* The type of the database.
|
||||||
|
*
|
||||||
|
* You can choose between many DB drivers, for example: dirty, postgres,
|
||||||
|
* sqlite, mysql.
|
||||||
|
*
|
||||||
|
* You shouldn't use "dirty" for for anything else than testing or
|
||||||
|
* development.
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* Database specific settings are dependent on dbType, and go in dbSettings.
|
||||||
|
* Remember that since Etherpad 1.6.0 you can also store these informations in
|
||||||
|
* credentials.json.
|
||||||
|
*
|
||||||
|
* For a complete list of the supported drivers, please refer to:
|
||||||
|
* https://www.npmjs.com/package/ueberdb2
|
||||||
|
*/
|
||||||
|
|
||||||
/* An Example of MySQL Configuration */
|
/* An Example of MySQL Configuration */
|
||||||
"dbType" : "mysql",
|
"dbType" : "mysql",
|
||||||
|
@ -15,10 +30,20 @@
|
||||||
"charset" : "utf8mb4"
|
"charset" : "utf8mb4"
|
||||||
},
|
},
|
||||||
|
|
||||||
/* Users for basic authentication. is_admin = true gives access to /admin.
|
/*
|
||||||
If you do not uncomment this, /admin will not be available! */
|
* Users for basic authentication.
|
||||||
|
*
|
||||||
|
* is_admin = true gives access to /admin.
|
||||||
|
* If you do not uncomment this, /admin will not be available!
|
||||||
|
*
|
||||||
|
* WARNING: passwords should not be stored in plaintext in this file.
|
||||||
|
* If you want to mitigate this, please install ep_hash_auth and
|
||||||
|
* follow the section "secure your installation" in README.md
|
||||||
|
*/
|
||||||
"users": {
|
"users": {
|
||||||
"__ADMIN__": {
|
"__ADMIN__": {
|
||||||
|
// 1) "password" can be replaced with "hash" if you install ep_hash_auth
|
||||||
|
// 2) please note that if password is null, the user will not be created
|
||||||
"password": "__PASSWD__",
|
"password": "__PASSWD__",
|
||||||
"is_admin": true
|
"is_admin": true
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue