Vorlock's Prosody Saltstack Formula
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

16 行
420B

  1. {% from "prosody/map.jinja" import prosody with context -%}
  2. VirtualHost "{{prosody.vhost}}"
  3. enabled = true
  4. ssl = {
  5. key = "{{prosody.ssl_key_path}}";
  6. certificate = "{{prosody.ssl_cert_path}}";
  7. }
  8. Component "conference.{{prosody.vhost}}" "muc"
  9. restrict_room_creation = "local"
  10. modules_enabled = {
  11. -- listening on 5582
  12. "admin_telnet"; -- Enable mod_admin_telnet
  13. }