43-http.yml 721 B

123456789101112131415161718192021222324252627282930313233343536
  1. listen:
  2. -
  3. # c2s via starttls
  4. port: 5222
  5. ip: "::" #listen to v4 and v6
  6. module: ejabberd_c2s
  7. starttls_required: true
  8. max_stanza_size: 262144
  9. shaper: c2s_shaper
  10. access: c2s
  11. -
  12. # c2s via tls
  13. port: 5223
  14. ip: "::" #listen to v4 and v6
  15. module: ejabberd_c2s
  16. tls: true
  17. max_stanza_size: 262144
  18. shaper: c2s_shaper
  19. access: c2s
  20. -
  21. port: 5443
  22. ip: "::" #listen to v4 and v6
  23. module: ejabberd_http
  24. tls: true
  25. ciphers: 'TLS_CIPHERS'
  26. protocol_options: 'TLS_OPTIONS'
  27. request_handlers:
  28. "/bosh": mod_bosh
  29. "/captcha": ejabberd_captcha
  30. "/upload": mod_http_upload
  31. "/ws": ejabberd_http_ws
  32. "/conversejs": mod_conversejs