mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-05-13 02:26:53 -04:00
Allow comments in the settings file
This commit is contained in:
parent
9849e81e08
commit
b0a937d8de
2 changed files with 21 additions and 3 deletions
|
@ -1,7 +1,23 @@
|
|||
/*
|
||||
This file must be valid JSON. But comments are allowed
|
||||
*/
|
||||
{
|
||||
"port" : 9001,
|
||||
|
||||
//The Type of the database. You can choose between sqlite and mysql
|
||||
"dbType" : "sqlite",
|
||||
//the database specific settings
|
||||
"dbSettings" : {
|
||||
"filename" : "../var/sqlite.db"
|
||||
}
|
||||
|
||||
/* An Example of MySQL Configuration
|
||||
"dbType" : "mysql",
|
||||
"dbSettings" : {
|
||||
"user" : "root",
|
||||
"host" : "localhost",
|
||||
"password": "",
|
||||
"database": "store"
|
||||
}
|
||||
*/
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue