Last active
December 26, 2015 19:29
-
-
Save 0xnbk/7201738 to your computer and use it in GitHub Desktop.
Etherpad lite config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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