43-http.yml 651 B

123456789101112131415161718192021222324252627
  1. listen:
  2. -
  3. port: 5443
  4. ip: "::" #listen to v4 and v6
  5. module: ejabberd_http
  6. tls: true
  7. ciphers: 'TLS_CIPHERS'
  8. protocol_options: 'TLS_OPTIONS'
  9. request_handlers:
  10. "/bosh": mod_bosh
  11. "/captcha": ejabberd_captcha
  12. "/upload": mod_http_upload
  13. "/ws": ejabberd_http_ws
  14. # "/conversejs": mod_conversejs
  15. -
  16. port: 80
  17. ip: "::" #listen to v4 and v6
  18. module: ejabberd_http
  19. tls: false #disabled as handeld by the reverse-proxy
  20. # tls: true
  21. # ciphers: 'TLS_CIPHERS'
  22. # protocol_options: 'TLS_OPTIONS'
  23. request_handlers:
  24. "/conversejs": mod_conversejs
  25. "/": mod_http_fileserver