Attempting to migrate off digga...
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
{
|
||||
#fileSystems."/export/" = {
|
||||
# device = "/mnt/mafuyu";
|
||||
# options = [ "bind" ];
|
||||
#};
|
||||
|
||||
services.nfs.server = {
|
||||
enable = true;
|
||||
# fixed rpc.statd port; for firewall
|
||||
lockdPort = 4001;
|
||||
mountdPort = 4002;
|
||||
statdPort = 4000;
|
||||
extraNfsdConfig = '''';
|
||||
exports = ''
|
||||
/home/ftp 192.168.1.0/24(rw)
|
||||
/mnt/one 192.168.1.0/24(rw)
|
||||
/mnt/two 192.168.1.0/24(rw,no_subtree_check) 10.0.69.0/24(rw,no_subtree_check)
|
||||
/mnt/three 192.168.1.0/24(rw)
|
||||
'';
|
||||
};
|
||||
|
||||
networking.firewall = {
|
||||
allowedTCPPorts = [ 111 2049 4000 4001 4002 20048 ];
|
||||
allowedUDPPorts = [ 111 2049 4000 4001 4002 20048 ];
|
||||
};
|
||||
|
||||
#systemd.services.create-mount-dir = {
|
||||
# serviceConfig = {
|
||||
# ExecStart = "mkdir /export";
|
||||
# };
|
||||
# wantedBy = [ "multi-user.target" ];
|
||||
# after = [ "remote-fs.target" ];
|
||||
# description = "Create a directory we can mount on fs";
|
||||
#};
|
||||
}
|
||||
Reference in New Issue
Block a user