summaryrefslogtreecommitdiffhomepage
path: root/webchat.conf
blob: 2a0852711bfaed3be006084bdfcbbff165f14672 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<config>
 <!--
  datapath: location in filesystem to store webchat data
  Example: /var/lib/webchat
 -->
 <datapath>/var/lib/webchat</datapath>

 <!--
  port: socket to listen on for websocket
  Example: ::1:8767
 -->
 <port>::1:9015</port>

 <!--
  Maximum age of individual webchat pages in seconds.
  Older pages will be removed by webchat-cleanup and crond.
  Example: 2592000 (~30 days)
 -->
 <maxage>2592000</maxage>
 
 <!--
  Number of threads to use
  Example: 4
 -->
 <threads>4</threads>
 
 <!--
  Maximum number of total concurrent websocket connections. Above this limit,
  new connections will be rejected until old ones are closed.
  Example: 500
  Default: 1000
 -->
 <maxconnections>500</maxconnections>
</config>