settings.json: in the mysql example, mention the existence of port parameter
The port parameter is supported by the mysql driver, but to know this one has to read through ueberDB's code. At least for this simple case, it may make sense to be explicit. Fixes #3453pull/3467/head
parent
392f39b623
commit
d38f53181f
|
@ -83,6 +83,7 @@
|
||||||
"dbSettings" : {
|
"dbSettings" : {
|
||||||
"user" : "etherpaduser",
|
"user" : "etherpaduser",
|
||||||
"host" : "localhost",
|
"host" : "localhost",
|
||||||
|
"port" : 3306,
|
||||||
"password": "PASSWORD",
|
"password": "PASSWORD",
|
||||||
"database": "etherpad_lite_db",
|
"database": "etherpad_lite_db",
|
||||||
"charset" : "utf8mb4"
|
"charset" : "utf8mb4"
|
||||||
|
|
Loading…
Reference in New Issue