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-MySQL
This commit is contained in:
Wikinaut 2018-05-11 01:10:33 +02:00 committed by muxator
parent bfec44e346
commit 784bd8c7cc
1 changed files with 3 additions and 1 deletions

View File

@ -45,12 +45,14 @@
},
/* An Example of MySQL Configuration
See https://github.com/ether/etherpad-lite/wiki/How-to-use-Etherpad-Lite-with-MySQL
"dbType" : "mysql",
"dbSettings" : {
"user" : "root",
"host" : "localhost",
"password": "",
"database": "store",
"database": "etherpad_lite_db",
"charset" : "utf8mb4"
},
*/