mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 06:07:37 +03:00
This allows migrating to and from any storage module that supports the right methods. Based on experimental mod_migrate work.
52 lines
693 B
Lua
52 lines
693 B
Lua
local data_path = "../../data";
|
|
|
|
local vhost = {
|
|
"accounts",
|
|
"account_details",
|
|
"roster",
|
|
"vcard",
|
|
"private",
|
|
"blocklist",
|
|
"privacy",
|
|
"archive-archive",
|
|
"offline-archive",
|
|
"pubsub_nodes",
|
|
-- "pubsub_*-archive",
|
|
"pep",
|
|
-- "pep_*-archive",
|
|
}
|
|
local muc = {
|
|
"persistent",
|
|
"config",
|
|
"state",
|
|
"muc_log-archive",
|
|
};
|
|
|
|
input {
|
|
hosts = {
|
|
["example.com"] = vhost;
|
|
["conference.example.com"] = muc;
|
|
};
|
|
type = "internal";
|
|
path = data_path;
|
|
}
|
|
|
|
output {
|
|
type = "sql";
|
|
driver = "SQLite3";
|
|
database = data_path.."/prosody.sqlite";
|
|
}
|
|
|
|
--[[
|
|
|
|
input {
|
|
type = "internal";
|
|
path = data_path;
|
|
}
|
|
output {
|
|
type = "sql";
|
|
driver = "SQLite3";
|
|
database = data_path.."/prosody.sqlite";
|
|
}
|
|
|
|
]]
|