Comparison

tools/migration/migrator.cfg.lua @ 13296:803a4ef6244d

migrator: Add mod_http_file_share example to config template
author Kim Alvefur <zash@zash.se>
date Wed, 01 Nov 2023 19:02:07 +0100
parent 13295:b788307ca06a
comparison
equal deleted inserted replaced
13295:b788307ca06a 13296:803a4ef6244d
21 "config", 21 "config",
22 "state", 22 "state",
23 "muc_log-archive", 23 "muc_log-archive",
24 "cron", 24 "cron",
25 }; 25 };
26 local upload = {
27 "uploads-archive",
28 "upload_stats",
29 "cron",
30 }
26 31
27 input { 32 input {
28 hosts = { 33 hosts = {
29 ["example.com"] = vhost; 34 ["example.com"] = vhost;
30 ["conference.example.com"] = muc; 35 ["conference.example.com"] = muc;
36 ["share.example.com"] = upload;
31 }; 37 };
32 type = "internal"; 38 type = "internal";
33 path = data_path; 39 path = data_path;
34 } 40 }
35 41