etherpad-lite/settings.json.template

110 lines
3.6 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
{
// Name your instance!
"title": "Etherpad Lite",
// favicon default name
// alternatively, set up a fully specified Url to your own favicon
"favicon": "favicon.ico",
2012-11-23 21:15:52 +01:00
//IP and port which etherpad should bind at
"ip": "0.0.0.0",
2011-05-14 19:57:07 +02:00
"port" : 9001,
2012-11-22 10:12:58 +01:00
// Session Key, used for reconnecting user sessions
// Set this to a secure string at least 10 characters long. Do not share this value.
"sessionKey" : "",
2012-11-22 10:12:58 +01:00
/*
// Node native SSL support
2012-11-23 21:15:52 +01:00
// this is disabled by default
//
// make sure to have the minimum and correct file access permissions set
// so that the Etherpad server can access them
2012-11-22 10:12:58 +01:00
"ssl" : {
2012-11-23 21:18:05 +01:00
"key" : "/path-to-your/epl-server.key",
"cert" : "/path-to-your/epl-server.crt"
2012-11-22 10:12:58 +01:00
},
*/
//The Type of the database. You can choose between dirty, postgres, sqlite and mysql
//You shouldn't use "dirty" for 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" : {
2012-03-04 19:47:35 +01:00
"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
2013-01-13 12:20:49 +01:00
//Logging configuration. See log4js documentation for further information
// https://github.com/nomiddlename/log4js-node
"logconfig" :
{ "appenders": [
{ "type": "console" }
] },
//the default text of a pad
2012-10-30 14:03:33 +01:00
"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\nGet involved with Etherpad at http:\/\/etherpad.org\n",
/* Users must have a session to access pads. This effectively allows only group pads to be accessed. */
"requireSession" : false,
2011-11-21 18:44:33 +01:00
/* Users may edit pads but not create new ones. Pad creation is only via the API. This applies both to group pads and regular pads. */
2011-11-26 03:24:00 +01:00
"editOnly" : 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,
/* How long may clients use served javascript code (in seconds)? Without versioning this
may cause problems during deployment. Set to 0 to disable caching */
"maxAge" : 21600, // 60 * 60 * 6 = 6 hours
/* This is the path to the Abiword executable. Setting it to null, disables abiword.
Abiword is needed to advanced import/export features of pads*/
2011-08-17 18:45:47 +02:00
"abiword" : null,
2012-04-19 14:25:12 +02:00
/* This setting is used if you require authentication of all users.
Note: /admin always requires authentication. */
"requireAuthentication": false,
/* Require authorization by a module, or a user with is_admin set, see below. */
2012-04-19 14:25:12 +02:00
"requireAuthorization": false,
/* Users for basic authentication. is_admin = true gives access to /admin.
If you do not uncomment this, /admin will not be available! */
/*
2012-04-19 14:25:12 +02:00
"users": {
"admin": {
"password": "changeme1",
2012-04-19 14:25:12 +02:00
"is_admin": true
},
"user": {
"password": "changeme1",
2012-04-19 14:25:12 +02:00
"is_admin": false
}
},
*/
2012-04-02 18:45:37 +02:00
2011-08-17 18:45:47 +02:00
/* The log level we are using, can be: DEBUG, INFO, WARN, ERROR */
"loglevel": "INFO",
// restrict socket.io transport methods
2013-01-24 23:39:32 +01:00
"socketTransportProtocols" : ["xhr-polling", "jsonp-polling", "htmlfile"]
2011-05-14 18:22:25 +02:00
}