Shawn
|
cc56c74964
|
refactor(emqx): update the tests for the new zone,listener config
|
2021-08-26 09:11:30 +08:00 |
Shawn
|
c5f0091b5d
|
refactor(config): rework - config struct for zones and listeners
```
listeners.tcp.default {
bind = "0.0.0.0:1883"
acceptors = 16
max_connections = 1024000
access_rules = [
"allow all"
]
proxy_protocol = false
proxy_protocol_timeout = 3s
mountpoint = ""
tcp.backlog = 1024
tcp.buffer = 4KB
}
listeners.ssl.default {
bind = "0.0.0.0:8883"
acceptors = 16
max_connections = 512000
access_rules = [
"allow all"
]
proxy_protocol = false
proxy_protocol_timeout = 3s
mountpoint = ""
ssl.versions = ["tlsv1.3", "tlsv1.2", "tlsv1.1", "tlsv1"]
ssl.keyfile = "etc/certs/key.pem"
ssl.certfile = "etc/certs/cert.pem"
ssl.cacertfile = "etc/certs/cacert.pem"
tcp.backlog = 1024
tcp.buffer = 4KB
}
listeners.quic.default {
bind = "0.0.0.0:14567"
acceptors = 16
max_connections = 1024000
keyfile = "etc/certs/key.pem"
certfile = "etc/certs/cert.pem"
mountpoint = ""
}
listeners.ws.default {
bind = "0.0.0.0:8083"
acceptors = 16
max_connections = 1024000
access_rules = [
"allow all"
]
proxy_protocol = false
proxy_protocol_timeout = 3s
mountpoint = ""
tcp.backlog = 1024
tcp.buffer = 4KB
websocket.idle_timeout = 86400s
}
listeners.wss.default {
bind = "0.0.0.0:8084"
acceptors = 16
max_connections = 512000
access_rules = [
"allow all"
]
proxy_protocol = false
proxy_protocol_timeout = 3s
mountpoint = ""
ssl.keyfile = "etc/certs/key.pem"
ssl.certfile = "etc/certs/cert.pem"
ssl.cacertfile = "etc/certs/cacert.pem"
tcp.backlog = 1024
tcp.buffer = 4KB
websocket.idle_timeout = 86400s
}
```
```
zones.default {
}
```
|
2021-08-26 09:11:30 +08:00 |
DDDHuang
|
4be58ae759
|
fix: event message api method
|
2021-08-25 17:38:08 +08:00 |
Turtle
|
e4f5e9332e
|
feat: support array bridge_mqtt conf
|
2021-08-25 13:34:00 +08:00 |
DDDHuang
|
78cf115a90
|
fix: swagger doc
|
2021-08-25 11:58:28 +08:00 |
DDDHuang
|
f184cd3d0e
|
fix: node parameters
|
2021-08-25 11:57:51 +08:00 |
DDDHuang
|
bafe5bae1c
|
fix: placeholder & topic schema no default
|
2021-08-25 11:57:37 +08:00 |
DDDHuang
|
b13ae50bed
|
fix: start sup
|
2021-08-25 11:57:37 +08:00 |
DDDHuang
|
aa6f1ac88d
|
feat: auto subscribe, todo: test SUITE
|
2021-08-25 11:57:37 +08:00 |
Rory Z
|
7e8dde7e26
|
chore: fix dialyzer error
Signed-off-by: zhanghongtong <rory-z@outlook.com>
|
2021-08-25 10:15:00 +08:00 |
zhanghongtong
|
a2bafd1a18
|
feat(authz): support authorization config file part 2
|
2021-08-25 10:15:00 +08:00 |
zhanghongtong
|
a7fac1a7a3
|
feat(authz): support authorization config file part 1.
|
2021-08-25 10:15:00 +08:00 |
Rory Z
|
1886aa8bff
|
chore: fix dialyzer error
|
2021-08-25 10:15:00 +08:00 |
zhanghongtong
|
bfb363bc61
|
chore(emqx_authz): rename authorization to authorization_rules in emqx_authz.conf
|
2021-08-25 10:15:00 +08:00 |
zhanghongtong
|
5652917af6
|
chore(authorization): moves authorization configuration items from zone to root
|
2021-08-25 10:15:00 +08:00 |
Turtle
|
87881621bb
|
fix: fix typo
|
2021-08-25 10:13:21 +08:00 |
Turtle
|
675d23111c
|
chore(swagger-schema): Delete the schema that is not reused
|
2021-08-24 23:01:51 +08:00 |
DDDHuang
|
bf67fa1be1
|
fix: generate topic metrics api & delayed message api path
|
2021-08-24 22:47:27 +08:00 |
Turtle
|
a1ae4457df
|
feat(prometheus): add get prometheus_format stats api
|
2021-08-24 21:01:21 +08:00 |
Turtle
|
bc325e55fc
|
fix(authn-authz-api): fix authn/authz test cases fail
|
2021-08-24 18:19:21 +08:00 |
Turtle
|
e0c05242a7
|
refactor(minirest-callback): refactor minirest callback function
|
2021-08-24 18:19:21 +08:00 |
zhanghongtong
|
0111306224
|
chore(CI): fix log attachment overwrite error
|
2021-08-24 16:15:14 +08:00 |
zhanghongtong
|
41f2b77ec3
|
chore(CI): update workflows
Signed-off-by: zhanghongtong <rory-z@outlook.com>
|
2021-08-24 15:04:27 +08:00 |
turtleDeng
|
335b8fec63
|
Merge pull request #5544 from turtleDeng/refactor-mgmt-schema-util
refactor(schema-utils): refactor mgmt swagger schema utils
|
2021-08-24 11:46:48 +08:00 |
Turtle
|
0cb5c3e6ec
|
refactor(topic-metrics): refactor topic_metrics api
|
2021-08-24 11:15:25 +08:00 |
Turtle
|
ffc9846744
|
Merge branch 'refactor-mgmt-schema-util' of https://github.com/turtleDeng/emqx into refactor-mgmt-schema-util
|
2021-08-24 11:10:34 +08:00 |
turtleDeng
|
1eee85c2bf
|
Merge pull request #1 from DDDHuang/deng_mgmt_pr
fix: alarms api page & limit parameters
|
2021-08-24 11:10:26 +08:00 |
DDDHuang
|
f1ba482ed6
|
fix: alarms api page & limit parameters
|
2021-08-24 11:04:39 +08:00 |
Turtle
|
6e97098d09
|
Merge branch 'refactor-mgmt-schema-util' of https://github.com/turtleDeng/emqx into refactor-mgmt-schema-util
|
2021-08-24 10:53:25 +08:00 |
Turtle
|
5a87d941f6
|
refactor(retainer): refactor emqx_retainer test case
|
2021-08-24 10:53:06 +08:00 |
Turtle
|
47378e0e96
|
refactor(schema-utils): refactor mgmt swagger schema utils
|
2021-08-24 10:53:06 +08:00 |
DDDHuang
|
8125ec7d08
|
feat: topic metrics api (#5520)
|
2021-08-24 10:52:18 +08:00 |
DDDHuang
|
32a84b3aba
|
fix: clients api node params
|
2021-08-24 10:51:01 +08:00 |
Turtle
|
55c3ea6064
|
refactor(retainer): refactor emqx_retainer test case
|
2021-08-24 10:47:42 +08:00 |
DDDHuang
|
e88823fd36
|
Merge pull request #5540 from DDDHuang/fix_clients_api
fix: clients subscribe api
|
2021-08-24 09:57:17 +08:00 |
Turtle
|
5c93c35559
|
refactor(schema-utils): refactor mgmt swagger schema utils
|
2021-08-24 00:32:51 +08:00 |
k32
|
397a04ec7c
|
Merge pull request #5509 from k32/rlog-fixes
Minor fixes to improve compatibility with RLOG feature
|
2021-08-23 16:10:33 +02:00 |
k32
|
2b976af9ea
|
chore(ekka): Bump version to 0.10.8
|
2021-08-23 14:10:26 +02:00 |
Shawn
|
5177ba02d6
|
fix(config): update ENVs for logger
|
2021-08-23 18:25:45 +08:00 |
Shawn
|
de92cd411b
|
feat(log): get the least severe level of handlers as the primary level
|
2021-08-23 18:25:45 +08:00 |
Shawn
|
8ac8b9785b
|
refactor(config): update the conf struct for logger
|
2021-08-23 18:25:45 +08:00 |
Shawn
|
985dce786c
|
refactor(config): update the conf struct for logger
|
2021-08-23 18:25:45 +08:00 |
DDDHuang
|
25bae9e397
|
fix: clients subscribe api
|
2021-08-23 10:31:24 +08:00 |
Turtle
|
31f588671d
|
refactor(statsd): refactor statsd swagger schema
|
2021-08-23 09:42:25 +08:00 |
Turtle
|
d4d4ba9ea4
|
refactor(prometheus): refactor prometheus swagger schema
|
2021-08-23 09:41:46 +08:00 |
k32
|
ecd7964a5d
|
fix(authn): Use local content shard for the chain table
|
2021-08-21 17:49:00 +02:00 |
k32
|
9c74fa42a5
|
chore(rlog): Use the new method of creating shards
|
2021-08-21 17:47:53 +02:00 |
k32
|
53a0c8b8a8
|
chore(ekka): Bump version to 0.10.7
|
2021-08-21 17:47:34 +02:00 |
k32
|
ca0fb214a7
|
feat(emqx-sn): Add tables to the SN shard
|
2021-08-21 17:47:34 +02:00 |
k32
|
af902df040
|
fix(emqx_machine): Fix application startup order
Ekka application should be started first
|
2021-08-21 17:47:34 +02:00 |