forked from bytebeamio/rumqtt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rumqttd.toml
88 lines (80 loc) · 2.14 KB
/
rumqttd.toml
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
id = 0
# A commitlog read will pull full segment. Make sure that a segment isn't
# too big as async tcp writes readiness of one connection might affect tail
# latencies of other connection. Not a problem with preempting runtimes
[router]
id = 0
instant_ack = true
max_segment_size = 104857600
max_segment_count = 10
max_read_len = 10240
max_connections = 10010
# [bridge]
# name = "bridge-1"
# addr = "localhost:1883"
# qos = 0
# sub_path = "#"
# reconnection_delay = 5
# ping_delay = 5
# timeout_delay = 5
# [bridge.connections]
# connection_timeout_ms = 60000
# max_client_id_len = 256
# throttle_delay_ms = 0
# max_payload_size = 20480
# max_inflight_count = 500
# max_inflight_size = 1024
# dynamic_filters = true
# [bridge.transport.tls]
# ca = "ca.cert.pem"
# client_auth = { certs = "test-1.cert.pem", key = "test-1.key.pem" }
# Configuration of server and connections that it accepts
[v4.1]
name = "v4-1"
listen = "0.0.0.0:1883"
next_connection_delay_ms = 1
[v4.1.connections]
connection_timeout_ms = 60000
max_client_id_len = 256
throttle_delay_ms = 0
max_payload_size = 20480
max_inflight_count = 500
max_inflight_size = 1024
dynamic_filters = true
# auth = { user1 = "p@ssw0rd", user2 = "password" }
# [v4.1.connections.auth]
# user1 = "p@ssw0rd"
# user2 = "password"
[v4.2]
name = "v4-2"
listen = "0.0.0.0:8883"
next_connection_delay_ms = 10
# tls config for rustls
[v4.2.tls]
capath = "/etc/tls/ca.cert.pem"
certpath = "/etc/tls/server.cert.pem"
keypath = "/etc/tls/server.key.pem"
# settings for all the connections on this server
[v4.2.connections]
connection_timeout_ms = 60000
throttle_delay_ms = 0
max_payload_size = 20480
max_inflight_count = 100
max_inflight_size = 1024
[v5.1]
name = "v5-1"
listen = "0.0.0.0:1884"
next_connection_delay_ms = 1
[v5.1.connections]
connection_timeout_ms = 60000
max_client_id_len = 256
throttle_delay_ms = 0
max_payload_size = 20480
max_inflight_count = 500
max_inflight_size = 1024
[prometheus]
port = 9042
interval = 1
[ws]
[console]
listen = "0.0.0.0:3030"