modules/ipfs: configure composable routing
This commit is contained in:
parent
666a591077
commit
ac2fb19ad7
1 changed files with 78 additions and 0 deletions
|
@ -64,6 +64,84 @@ in {
|
|||
StorageGCWatermark = 90;
|
||||
StorageMax = "200GB";
|
||||
};
|
||||
Routing = {
|
||||
Type = "custom";
|
||||
Routers = {
|
||||
LanDHT = {
|
||||
Type = "dht";
|
||||
Parameters = {
|
||||
Mode = "auto";
|
||||
PublicIPNetwork = false;
|
||||
AcceleratedDHTClient = false;
|
||||
};
|
||||
};
|
||||
WanDHT = {
|
||||
Type = "dht";
|
||||
Parameters = {
|
||||
Mode = "auto";
|
||||
PublicIPNetwork = true;
|
||||
AcceleratedDHTClient = true;
|
||||
};
|
||||
};
|
||||
CidContact = {
|
||||
Type = "http";
|
||||
Parameters.Endpoint = "https://cid.contact";
|
||||
};
|
||||
PrivateVoid = {
|
||||
Type = "http";
|
||||
Parameters.Endpoint = "https://p2p.privatevoid.net";
|
||||
};
|
||||
AllDHT = {
|
||||
Type = "parallel";
|
||||
Parameters.Routers = [
|
||||
{
|
||||
RouterName = "WanDHT";
|
||||
IgnoreErrors = false;
|
||||
Timeout = "30s";
|
||||
}
|
||||
{
|
||||
RouterName = "LanDHT";
|
||||
IgnoreErrors = false;
|
||||
Timeout = "10s";
|
||||
}
|
||||
];
|
||||
};
|
||||
Parallel = {
|
||||
Type = "parallel";
|
||||
Parameters.Routers = [
|
||||
{
|
||||
RouterName = "WanDHT";
|
||||
IgnoreErrors = false;
|
||||
Timeout = "30s";
|
||||
}
|
||||
{
|
||||
RouterName = "LanDHT";
|
||||
IgnoreErrors = false;
|
||||
Timeout = "10s";
|
||||
}
|
||||
{
|
||||
RouterName = "CidContact";
|
||||
IgnoreErrors = true;
|
||||
Timeout = "10s";
|
||||
ExecuteAfter = "3s";
|
||||
}
|
||||
{
|
||||
RouterName = "PrivateVoid";
|
||||
IgnoreErrors = true;
|
||||
Timeout = "5s";
|
||||
ExecuteAfter = "1s";
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
Methods = {
|
||||
find-peers.RouterName = "Parallel";
|
||||
find-providers.RouterName = "Parallel";
|
||||
get-ipns.RouterName = "Parallel";
|
||||
put-ipns.RouterName = "Parallel";
|
||||
provide.RouterName = "AllDHT";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue