Update settings.json.template
harmonizing the database name. "store" is the table name - not to be used here! Database name must not contain "-", but can contain "_". See https://github.com/ether/etherpad-lite/wiki/How-to-use-Etherpad-Lite-with-MySQLpull/3064/head
parent
bfec44e346
commit
784bd8c7cc
|
@ -45,12 +45,14 @@
|
||||||
},
|
},
|
||||||
|
|
||||||
/* An Example of MySQL Configuration
|
/* An Example of MySQL Configuration
|
||||||
|
See https://github.com/ether/etherpad-lite/wiki/How-to-use-Etherpad-Lite-with-MySQL
|
||||||
|
|
||||||
"dbType" : "mysql",
|
"dbType" : "mysql",
|
||||||
"dbSettings" : {
|
"dbSettings" : {
|
||||||
"user" : "root",
|
"user" : "root",
|
||||||
"host" : "localhost",
|
"host" : "localhost",
|
||||||
"password": "",
|
"password": "",
|
||||||
"database": "store",
|
"database": "etherpad_lite_db",
|
||||||
"charset" : "utf8mb4"
|
"charset" : "utf8mb4"
|
||||||
},
|
},
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue