diff options
Diffstat (limited to 'debian')
-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> |