gateway.exproto.conf.example 660 B

12345678910111213141516171819202122232425
  1. ## Gateway Exproto
  2. gateway.exproto {
  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 = "exproto/"
  7. ## Configurations for starting the ConnectionAdapter service
  8. server {
  9. bind = "0.0.0.0:9100"
  10. ssl_options {verify = "verify_none"}
  11. }
  12. ## Configurations for request to ConnectionHandler service
  13. handler {
  14. address = "http://127.0.0.1:9001"
  15. ssl_options {enable = false}
  16. }
  17. listeners.tcp.default {
  18. bind = "0.0.0.0:7993"
  19. }
  20. }