flake/services/distrust/ipfs.nix
2025-11-10 00:13:19 +00:00

14 lines
276 B
Nix

{
services = {
kubo.enable = true;
tor.relay.onionServices."site".map = [
4001
8080
];
caddy.virtualHosts."ipfs.distrust.network".extraConfig = ''
reverse_proxy localhost:8080
'';
};
networking.firewall.allowedTCPPorts = [4001];
}