emqx/apps/emqx_stomp
Zaiming Shi f000b6583c fix(tls): Ensure tls config integrity
For default tsl version and ciphers, we try to use otp release number
to determin if we want to use tlsv1.3

For default configs, we try to porivde both tlsv1.3 and
ciphers in config (even for commented out configs)
2021-02-09 22:56:28 +01:00
..
etc fix(tls): Ensure tls config integrity 2021-02-09 22:56:28 +01:00
include fix(stomp): Fix dialyzer warnings 2020-12-10 09:35:35 +01:00
priv refactor(proj): Add apps 2020-12-04 22:11:53 +01:00
src fix(emqx_stomp): Fix emqx_stomp_protocol xref 2020-12-16 18:39:18 +08:00
test test(stomp): cover the emqx_stom_heartbeat:interval/2 2020-12-10 13:08:03 +08:00
.gitignore refactor(proj): Add apps 2020-12-04 22:11:53 +01:00
README.md refactor(proj): Add apps 2020-12-04 22:11:53 +01:00
rebar.config refactor(stomp): remove transaction module 2020-12-10 12:33:55 +08:00

README.md

emqx-stomp

The plugin adds STOMP 1.0/1.1/1.2 protocol supports to the EMQ X broker.

The STOMP clients could PubSub to the MQTT clients.

Configuration

etc/emqx_stomp.conf

## The Port that stomp listener will bind.
##
## Value: Port
stomp.listener = 61613

## The acceptor pool for stomp listener.
##
## Value: Number
stomp.listener.acceptors = 4

## Maximum number of concurrent stomp connections.
##
## Value: Number
stomp.listener.max_connections = 512

## Default login user
##
## Value: String
stomp.default_user.login = guest

## Default login password
##
## Value: String
stomp.default_user.passcode = guest

## Allow anonymous authentication.
##
## Value: true | false
stomp.allow_anonymous = true

## Maximum numbers of frame headers.
##
## Value: Number
stomp.frame.max_headers = 10

## Maximum length of frame header.
##
## Value: Number
stomp.frame.max_header_length = 1024

## Maximum body length of frame.
##
## Value: Number
stomp.frame.max_body_length = 8192

Load the Plugin

./bin/emqx_ctl plugins load emqx_stomp

License

Apache License Version 2.0

Author

EMQ X Team.