diff options
author | Matthew Fennell <matthew@fennell.dev> | 2024-04-04 22:54:05 +0100 |
---|---|---|
committer | Matthew Fennell <matthew@fennell.dev> | 2024-04-04 22:54:05 +0100 |
commit | de867dadbcc3c69d97acf96bf3e86d11295eea39 (patch) | |
tree | 2962ef65772790097581f19a2af9b12ac30087e4 /files/virtual_host.cfg.lua.j2 | |
parent | d29a60b1afec942fe4f7ca7baa95d870afaae83e (diff) |
Bring repo up-to-date with current prod config
Diffstat (limited to 'files/virtual_host.cfg.lua.j2')
-rw-r--r-- | files/virtual_host.cfg.lua.j2 | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/files/virtual_host.cfg.lua.j2 b/files/virtual_host.cfg.lua.j2 index 6db9e98..272e24b 100644 --- a/files/virtual_host.cfg.lua.j2 +++ b/files/virtual_host.cfg.lua.j2 @@ -4,9 +4,27 @@ VirtualHost "{{ virtual_host }}" +admins = { "admin@{{ virtual_host }}" }; + +modules_enabled = { + "invites"; + "invites_adhoc"; + "invites_page"; + "invites_register"; + "register"; + "register_apps"; +} + +contact_info = { + abuse = { "xmpp:abuse@{{ virtual_host }}" }; + admin = { "xmpp:admin@{{ virtual_host }}" }; +} + turn_external_host = "turn.{{ virtual_host }}" turn_external_secret = "{{ turn_secret }}" +allow_user_invites = true +http_external_url = "https://{{ virtual_host }}/" site_name = "{{ virtual_host }}" Component "upload.{{ virtual_host }}" "http_file_share" @@ -19,3 +37,5 @@ modules_enabled = { log_all_rooms = true restrict_room_creation = "local" +muc_room_default_public = false +muc_room_default_public_jids = true |