fix ipfs server

This commit is contained in:
Charlotte 🦝 Delenk 2023-06-10 09:18:18 +01:00
parent acceb84b7a
commit 29ee1f712d
Signed by: darkkirb
GPG key ID: AB2BD8DAF2E37122
3 changed files with 8 additions and 4 deletions

View file

@ -89,8 +89,4 @@
networking.firewall.allowedUDPPorts = [
4001
];
fileSystems."/var/lib/ipfs/root" = {
device = "/";
options = ["bind" "ro"];
};
}

View file

@ -8,4 +8,8 @@
services.kubo = {
package = pkgs.kubo-orig;
};
fileSystems."/var/lib/ipfs/root" = {
device = "/";
options = ["bind" "ro"];
};
}

View file

@ -75,4 +75,8 @@
reverse_proxy http://127.0.0.1:41876
'';
};
fileSystems."/persist/var/lib/ipfs/root" = {
device = "/";
options = ["bind" "ro"];
};
}