From c18512c0efeba0b90d42e03974e64bb25be12d10 Mon Sep 17 00:00:00 2001 From: Tobias Schmidl <5060861-schtobia@users.noreply.gitlab.com> Date: Wed, 7 Dec 2022 11:15:26 +0100 Subject: [PATCH] added config --- quassel-web/settings-user.js | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 quassel-web/settings-user.js diff --git a/quassel-web/settings-user.js b/quassel-web/settings-user.js new file mode 100644 index 0000000..bfa4c9c --- /dev/null +++ b/quassel-web/settings-user.js @@ -0,0 +1,23 @@ +module.exports = { + default: { // Those can be overridden in the browser + host: '', // quasselcore host + port: 4242, // quasselcore port + initialBacklogLimit: 20, // Amount of backlogs to fetch per buffer on connection + backlogLimit: 100, // Amount of backlogs to fetch per buffer after first retrieval + securecore: true, // Connect to the core using SSL + theme: 'default', // Default UI theme + perchathistory: true, // Separate history per buffer + displayfullhostmask: false, // Display full hostmask instead of just nicks in messages + emptybufferonswitch: false, // Trim buffer when switching to another buffer. Can be `false` or a positive integer + highlightmode: 2 // Highlight mode: 1: None, 2: Current nick, 3: All nicks from identity + }, + webserver: { + socket: false, // Tells the webserver to listen for connections on a local socket. This should be a path. Can be overridden by '--socket' argument + listen: null, // Address on which to listen for connection, defaults to listening on all available IPs. Can be overridden by '--listen' argument + port: null, // Port on which to listen for connection, defaults to 64080 for http mode, 64443 for https. Can be overridden by '--port' argument + mode: http // can be 'http' or 'https', defaults to 'https'. Can be overridden by '--mode' argument + }, + themes: ['default', 'darksolarized'], // Available themes + forcedefault: false, // Will force default host and port to be used if true, and will hide the corresponding fields in the UI. + prefixpath: '' // Configure this if you use a reverse proxy +};