diff options
author | Kim Alvefur <zash@zash.se> | 2023-11-01 19:02:07 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2023-11-01 19:02:07 +0100 |
commit | 918bb97dd567cfdb2e2fe16c1e08c708e422f341 (patch) | |
tree | fc00314d7f8e9c2cb93c22c5c267d9c5ec92351e | |
parent | 607bfafe36c62f7fe58d145d554b71e9217e9db5 (diff) | |
download | prosody-918bb97dd567cfdb2e2fe16c1e08c708e422f341.tar.gz prosody-918bb97dd567cfdb2e2fe16c1e08c708e422f341.zip |
migrator: Add mod_http_file_share example to config template
-rw-r--r-- | tools/migration/migrator.cfg.lua | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/migration/migrator.cfg.lua b/tools/migration/migrator.cfg.lua index 4291810f..6e29b9b8 100644 --- a/tools/migration/migrator.cfg.lua +++ b/tools/migration/migrator.cfg.lua @@ -23,11 +23,17 @@ local muc = { "muc_log-archive", "cron", }; +local upload = { + "uploads-archive", + "upload_stats", + "cron", +} input { hosts = { ["example.com"] = vhost; ["conference.example.com"] = muc; + ["share.example.com"] = upload; }; type = "internal"; path = data_path; |