diff options
author | Roland Reichwein <mail@reichwein.it> | 2023-01-26 20:46:30 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2023-01-26 20:46:30 +0100 |
commit | 789e5555ab4c44a1ae779eccf6ccf8340602cf22 (patch) | |
tree | fd1c15ac38ec4d43965d8e12a149ae52a0808a73 /debian/whiteboard.conf | |
parent | 004db5e7e4e9ab6ac5b4730873c6b8f58da92930 (diff) |
Websockets: Notify other clients of changes
Diffstat (limited to 'debian/whiteboard.conf')
-rw-r--r-- | debian/whiteboard.conf | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/debian/whiteboard.conf b/debian/whiteboard.conf new file mode 100644 index 0000000..126bef5 --- /dev/null +++ b/debian/whiteboard.conf @@ -0,0 +1,26 @@ +<config> + <!-- + datapath: location in filesystem to store whiteboard data + Example: /var/lib/whiteboard + --> + <datapath>/var/lib/whiteboard</datapath> + + <!-- + port: socket to listen on for websocket + Example: ::1:8765 + --> + <port>::1:8765</port> + + <!-- + Maximum age of individual whiteboard pages in seconds. + Older pages will be removed by whiteboard-cleanup and crond. + Example: 2592000 (~30 days) + --> + <maxage>2592000</maxage> + + <!-- + Number of threads to use + Example: 4 + --> + <threads>4</threads> +</config> |