depot/cluster/services/ipfs/default.nix

69 lines
1.8 KiB
Nix
Raw Normal View History

2023-08-31 01:55:45 +03:00
{ config, depot, lib, ... }:
{
2023-08-31 01:55:45 +03:00
hostLinks = lib.genAttrs config.services.ipfs.nodes.node (name: depot.lib.summon name ({ depot, ... }: let
2023-03-07 02:26:07 +02:00
host = depot.reflection;
intf = host.interfaces.primary;
self = config.hostLinks.${name}.ipfs;
in {
ipfs = {
ipv4 = if intf ? addrPublic then intf.addrPublic else intf.addr;
port = 4001;
extra = {
peerId = {
VEGAS = "Qmd7QHZU8UjfYdwmjmq1SBh9pvER9AwHpfwQvnvNo3HBBo";
prophet = "12D3KooWQWsHPUUeFhe4b6pyCaD1hBoj8j6Z7S7kTznRTh1p1eVt";
}.${name};
multiaddrs = [
"/ip4/${self.ipv4}/udp/${self.portStr}/quic-v1"
"/ip4/${self.ipv4}/tcp/${self.portStr}"
];
};
};
2023-08-31 01:55:45 +03:00
}));
services.ipfs = {
nodes = {
node = [ "VEGAS" "prophet" ];
clusterPeer = [ "VEGAS" "prophet" ];
gateway = [ "VEGAS" "prophet" ];
2023-06-02 18:51:00 +03:00
io-tweaks = [ "VEGAS" ];
remote-api = [ "VEGAS" ];
};
nixos = {
node = [
./node.nix
];
gateway = [
./gateway.nix
./monitoring.nix
];
clusterPeer = [
./cluster.nix
];
2023-06-02 18:51:00 +03:00
io-tweaks = ./io-tweaks.nix;
remote-api = ./remote-api.nix;
};
};
monitoring.blackbox.targets.ipfs-gateway = {
2023-08-31 01:55:45 +03:00
address = "https://bafybeiczsscdsbs7ffqz55asqdf3smv6klcw3gofszvwlyarci47bgf354.ipfs.${depot.lib.meta.domain}/";
module = "https2xx";
};
2023-11-03 00:43:58 +02:00
dns.records = {
p2p.consulService = "ipfs-gateway";
pin.consulService = "ipfs-gateway";
"ipfs.admin".target = map
(node: depot.hours.${node}.interfaces.primary.addrPublic)
config.services.ipfs.nodes.remote-api;
"^[^_].+\\.ipfs" = {
consulService = "ipfs-gateway";
rewrite.type = "regex";
};
"^[^_].+\\.ipns" = {
consulService = "ipfs-gateway";
rewrite.type = "regex";
};
2023-11-03 00:43:58 +02:00
};
}