"use strict"; module.exports = { public: false, port: 9000, bind: "0.0.0.0", reverseProxy: true, lockNetwork: true, maxHistory: 10000, leaveMessage: "Doei!", defaults: { name: "Smurfnet", password: "", rejectUnauthorized: true, nick: "", username: "", realname: "", join: "#bitlair", }, messageStorage: ["sqlite", "text"], fileUpload: { enable: true, }, networks: { Smurfnet: { host: "irc.smurfnet.ch", port: 6697, tls: true, rejectUnauthorized: false, }, "Libera.Chat": { host: "irc.libera.chat", port: 6697, tls: true, rejectUnauthorized: true, }, OFTC: { host: "irc.oftc.net", port: 6697, tls: true, rejectUnauthorized: true, }, }, identd: { enable: true, port: 113, }, ldap: { enable: true, url: "{{ thelounge_ldap_url }}", primaryKey: "uid", searchDN: { rootDN: "{{ thelounge_ldap_rootDN }}", rootPassword: "{{ thelounge_ldap_rootPassword }}", filter: "{{ thelounge_ldap_filter }}", base: "{{ thelounge_ldap_base }}", }, }, };