gateway.stomp.conf.example 624 B

123456789101112131415161718192021222324
  1. ## Gateway STOMP
  2. gateway.stomp {
  3. ## When publishing or subscribing, prefix all topics with a mountpoint string.
  4. ## It's a way that you can use to implement isolation of message routing between different
  5. ## gateway protocols
  6. mountpoint = "stomp/"
  7. frame {
  8. ## The maximum number of Header
  9. max_headers = 10
  10. ## The maximum string length of the Header name and value.
  11. max_headers_length = 1024
  12. ## The Maximum number of bytes of Body allowed per Stomp packet.
  13. max_body_length = 65536
  14. }
  15. listeners.tcp.default {
  16. bind = "0.0.0.0:61613"
  17. }
  18. }