etherpad-lite/settings.json

34 lines
1.1 KiB
JSON
Raw Normal View History

2011-05-19 15:30:08 +02:00
/*
This file must be valid JSON. But comments are allowed
*/
2011-05-14 18:22:25 +02:00
{
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 sqlite and mysql
2011-05-14 19:57:07 +02:00
"dbType" : "sqlite",
2011-05-19 15:30:08 +02:00
//the database specific settings
2011-05-14 19:57:07 +02:00
"dbSettings" : {
"filename" : "../var/sqlite.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
//if true, every http request will be loged to stdout
"logHTTP" : true,
//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",
/* 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-05-28 22:15:20 +02:00
"minify" : true
2011-05-14 18:22:25 +02:00
}