settings.json.j2 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. #jinja2: lstrip_blocks: True
  2. {
  3. "title": "{{ title }}",
  4. "favicon": "{{ favicon }}",
  5. "ip": "127.0.0.1",
  6. "port" : "31337",
  7. "showSettingsInAdminPage": false,
  8. "sessionKey": "oijaoifd",
  9. "skinName": "colibris",
  10. "dbType": "postgres",
  11. "dbSettings" : {
  12. "user" : "etherpad",
  13. "host" : "/var/run/postgresql",
  14. "password": "{{ database_password }}",
  15. "database": "etherpad",
  16. "charset" : "utf8mb4"
  17. },
  18. "defaultPadText": "{{ pad_default_text | replace("\n", "\\n")}}",
  19. "padOptions": {
  20. "noColors": false,
  21. "showControls": true,
  22. "showChat": true,
  23. "showLineNumbers": true,
  24. "useMonospaceFont": true,
  25. "userName": true,
  26. "userColor": false,
  27. "rtl": false,
  28. "alwaysShowChat": false,
  29. "chatAndUsers": false,
  30. "lang": "{{ pad_options_lang }}"
  31. },
  32. "padShortcutEnabled" : {
  33. "altF9": true,
  34. "altC": true,
  35. "cmdShift2": true,
  36. "delete": true,
  37. "return": true,
  38. "esc": true,
  39. "cmdS": true,
  40. "tab": true,
  41. "cmdZ": true,
  42. "cmdY": true,
  43. "cmdI": true,
  44. "cmdB": true,
  45. "cmdU": true,
  46. "cmd5": true,
  47. "cmdShiftL": true,
  48. "cmdShiftN": true,
  49. "cmdShift1": true,
  50. "cmdShiftC": true,
  51. "cmdH": true,
  52. "ctrlHome": true,
  53. "pageUp": true,
  54. "pageDown": true
  55. },
  56. "suppressErrorsInPadText": false,
  57. "requireSession": false,
  58. "editOnly": false,
  59. "sessionNoPassword": false,
  60. "minify": true,
  61. "maxAge": 21600,
  62. "abiword": "/usr/bin/abiword",
  63. "soffice": false,
  64. "tidyHtml": "/usr/bin/tidy",
  65. "allowUnknownFileEnds": true,
  66. "requireAuthentication": false,
  67. "requireAuthorization": false,
  68. "trustProxy": false,
  69. "disableIPlogging": true,
  70. "automaticReconnectionTimeout": 5,
  71. "scrollWhenFocusLineIsOutOfViewport": {
  72. "percentage": {
  73. "editionAboveViewport": 0,
  74. "editionBelowViewport": 0
  75. },
  76. "duration": 0,
  77. "scrollWhenCaretIsInTheLastLineOfViewport": false,
  78. "percentageToScrollWhenUserPressesArrowUp": 0
  79. },
  80. "socketTransportProtocols": ["xhr-polling", "jsonp-polling", "htmlfile"],
  81. "loadTest": false,
  82. "indentationOnNewLine": false,
  83. "toolbar": {
  84. "left": [
  85. ["bold", "italic", "underline", "strikethrough"],
  86. ["orderedlist", "unorderedlist", "indent", "outdent"],
  87. ["undo", "redo"],
  88. ["clearauthorship"]
  89. ],
  90. "right": [
  91. ["importexport", "timeslider", "savedrevision"],
  92. ["settings", "embed"],
  93. ["showusers"]
  94. ],
  95. "timeslider": [
  96. ["timeslider_export", "timeslider_returnToPad"]
  97. ]
  98. },
  99. "exposeVersion": false,
  100. "loglevel": "WARN"
  101. }