Skip to content

Instantly share code, notes, and snippets.

@0xnbk
Last active December 26, 2015 19:29
Show Gist options
  • Save 0xnbk/7201738 to your computer and use it in GitHub Desktop.
Save 0xnbk/7201738 to your computer and use it in GitHub Desktop.
Etherpad lite config
{
"title": "Etherpad",
"favicon": "favicon.ico",
"ip": "0.0.0.0",
"port" : 9001,
"sessionKey" : "",
"ssl" : {
"key" : "/path-to-your/epl-server.key",
"cert" : "/path-to-your/epl-server.crt"
},
"dbType" : "dirty",
"dbSettings" : {
"filename" : "var/dirty.db"
},
"defaultPadText" : "Welcome to Etherpad!\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",
"requireSession" : false,
"editOnly" : false,
"minify" : true,
"maxAge" : 21600,
"abiword" : null,
"requireAuthentication": false,
"requireAuthorization": false,
"trustProxy": false,
"users": {
"admin": {
"password": "changeme1",
"is_admin": true
},
"user": {
"password": "changeme1",
"is_admin": false
}
},
"socketTransportProtocols" : ["xhr-polling", "jsonp-polling", "htmlfile"],
"loglevel": "INFO"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment