2011-05-19 14:30:08 +01:00
|
|
|
/*
|
2011-06-02 12:15:02 +01:00
|
|
|
This file must be valid JSON. But comments are allowed
|
|
|
|
|
|
|
|
Please edit settings.json, not settings.json.template
|
2011-05-19 14:30:08 +01:00
|
|
|
*/
|
2011-05-14 17:22:25 +01:00
|
|
|
{
|
2011-07-30 16:39:53 +01:00
|
|
|
//Ip and port which etherpad should bind at
|
|
|
|
"ip": "0.0.0.0",
|
2011-05-14 18:57:07 +01:00
|
|
|
"port" : 9001,
|
2011-05-19 14:30:08 +01:00
|
|
|
|
|
|
|
//The Type of the database. You can choose between sqlite and mysql
|
2011-08-17 12:30:35 +01:00
|
|
|
"dbType" : "dirty",
|
2011-05-19 14:30:08 +01:00
|
|
|
//the database specific settings
|
2011-05-14 18:57:07 +01:00
|
|
|
"dbSettings" : {
|
2011-08-17 12:30:35 +01:00
|
|
|
"filename" : "../var/dirty.db"
|
2011-05-19 17:36:26 +01:00
|
|
|
},
|
2011-05-19 14:30:08 +01:00
|
|
|
|
|
|
|
/* An Example of MySQL Configuration
|
|
|
|
"dbType" : "mysql",
|
|
|
|
"dbSettings" : {
|
|
|
|
"user" : "root",
|
|
|
|
"host" : "localhost",
|
|
|
|
"password": "",
|
|
|
|
"database": "store"
|
2011-05-28 18:09:17 +01:00
|
|
|
},
|
2011-05-19 14:30:08 +01:00
|
|
|
*/
|
2011-05-19 17:36:26 +01:00
|
|
|
|
2011-05-19 22:46:19 +01:00
|
|
|
//the default text of a pad
|
2011-08-26 20:09:08 +01:00
|
|
|
//default means the standart text of the used language will be used
|
|
|
|
"defaultPadText" : "default",
|
2011-05-28 18:09:17 +01:00
|
|
|
|
|
|
|
/* if true, all css & js will be minified before sending to the client. This will improve the loading performance massivly,
|
|
|
|
but makes it impossible to debug the javascript/css */
|
2011-07-19 19:48:11 +01:00
|
|
|
"minify" : true,
|
|
|
|
|
|
|
|
/* This is the path to the Abiword executable. Setting it to null, disables abiword.
|
|
|
|
Abiword is needed to enable the import/export of pads*/
|
2011-08-17 17:45:47 +01:00
|
|
|
"abiword" : null,
|
|
|
|
|
|
|
|
/* The log level we are using, can be: DEBUG, INFO, WARN, ERROR */
|
2011-08-24 18:37:22 +01:00
|
|
|
"loglevel": "INFO",
|
|
|
|
|
|
|
|
/* The language of the user interface */
|
|
|
|
"language": "en"
|
2011-05-14 17:22:25 +01:00
|
|
|
}
|