blob: 6ec23e16a72751d540ac6cad3756c2bd4f11584f (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
--- a/example.jackal.yml
+++ b/example.jackal.yml
@@ -1,18 +1,18 @@
# jackal default configuration file
-pid_path: jackal.pid
+pid_path: data/jackal.pid
-debug:
- port: 6060
+# debug:
+# port: 6060
logger:
level: debug
log_path: jackal.log
storage:
- type: mysql
- mysql:
- host: 127.0.0.1:3306
+ type: pgsql
+ pgsql:
+ host: 127.0.0.1:5432
user: jackal
password: password
database: jackal
@@ -67,19 +67,18 @@
max_stanza_size: 65536
resource_conflict: replace # [override, replace, reject]
- transport:
- type: socket # websocket
- bind_addr: 0.0.0.0
- port: 5222
- keep_alive: 120
- # url_path: /xmpp/ws
+ # transport:
+ # type: socket # websocket
+ # bind_addr: 0.0.0.0
+ # port: 5222
+ # keep_alive: 120
+ # # url_path: /xmpp/ws
- compression:
- level: default
+ # compression:
+ # level: default
sasl:
- plain
- - digest_md5
- scram_sha_1
- scram_sha_256
- scram_sha_512
|