summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2011-12-26 12:51:11 -0200
committerSilvio Rhatto <rhatto@riseup.net>2011-12-26 12:51:11 -0200
commitc7b5e6382568aa06f26d80b7130a959c4384b990 (patch)
treea0ec190262fa16a622107d49786c53b898d8ca94 /templates
downloadpuppet-etherpad-c7b5e6382568aa06f26d80b7130a959c4384b990.tar.gz
puppet-etherpad-c7b5e6382568aa06f26d80b7130a959c4384b990.tar.bz2
Initial import
Diffstat (limited to 'templates')
-rw-r--r--templates/settings.json.erb61
1 files changed, 61 insertions, 0 deletions
diff --git a/templates/settings.json.erb b/templates/settings.json.erb
new file mode 100644
index 0000000..376b603
--- /dev/null
+++ b/templates/settings.json.erb
@@ -0,0 +1,61 @@
+/*
+ Managed by puppet
+ This file must be valid JSON. But comments are allowed
+
+ Please edit settings.json, not settings.json.template
+*/
+{
+ //Ip and port which etherpad should bind at
+ "ip": "0.0.0.0",
+ "port" : 9001,
+
+ //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",
+ //the database specific settings
+ /*
+ "dbSettings" : {
+ "filename" : "../var/dirty.db"
+ },
+
+ */
+ /* An Example of MySQL Configuration
+ "dbType" : "mysql",
+ "dbSettings" : {
+ "user" : "root",
+ "host" : "localhost",
+ "password": "",
+ "database": "store"
+ },
+ */
+ "dbType" : "mysql",
+ "dbSettings" : {
+ "user" : "etherpad",
+ "host" : "localhost",
+ "password": "<%= etherpad_db_password %>",
+ "database": "etherpad"
+ },
+
+ //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,
+
+ /* 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. */
+ "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,
+
+ /* This is the path to the Abiword executable. Setting it to null, disables abiword.
+ Abiword is needed to enable the import/export of pads*/
+ "abiword" : null,
+
+ /* This setting is used if you need http basic auth */
+ // "httpAuth" : "user:pass",
+
+ /* The log level we are using, can be: DEBUG, INFO, WARN, ERROR */
+ "loglevel": "INFO"
+}