etherpad-lite/settings.json
2011-05-19 17:40:44 +01:00

25 lines
614 B
JSON

/*
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"
}
*/
"logHTTP" : true
}