etherpad-lite/settings.json.template

46 lines
1.7 KiB
Plaintext
Raw Normal View History

2011-05-19 15:30:08 +02:00
/*
2011-06-02 13:15:02 +02:00
This file must be valid JSON. But comments are allowed
Please edit settings.json, not settings.json.template
2011-05-19 15:30:08 +02:00
*/
2011-05-14 18:22:25 +02:00
{
//Ip and port which etherpad should bind at
"ip": "0.0.0.0",
2011-05-14 19:57:07 +02:00
"port" : 9001,
2011-05-19 15:30:08 +02:00
//The Type of the database. You can choose between dirty, sqlite and mysql
//You should use mysql or sqlite for anything else than testing or development
"dbType" : "dirty",
2011-05-19 15:30:08 +02:00
//the database specific settings
2011-05-14 19:57:07 +02:00
"dbSettings" : {
"filename" : "../var/dirty.db"
2011-05-19 18:36:26 +02:00
},
2011-05-19 15:30:08 +02:00
/* An Example of MySQL Configuration
"dbType" : "mysql",
"dbSettings" : {
"user" : "root",
"host" : "localhost",
"password": "",
"database": "store"
},
2011-05-19 15:30:08 +02:00
*/
2011-05-19 18:36:26 +02:00
//the default text of a pad
"defaultPadText" : "Welcome to Etherpad Lite!\n\nThis pad text is synchronized as you type, so that everyone viewing this page sees the same text. This allows you to collaborate seamlessly on documents!\n\nEtherpad Lite on Github: http:\/\/j.mp/ep-lite\n",
/* Users must have a session to access pads. This effectively allows only group pads to be accessed. */
"requireSession" : false,
/* 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 */
"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 18:45:47 +02:00
"abiword" : null,
/* The log level we are using, can be: DEBUG, INFO, WARN, ERROR */
"loglevel": "INFO"
2011-05-14 18:22:25 +02:00
}