launched forever server
This commit is contained in:
parent
e372d23c89
commit
d0c50ed1af
|
@ -124,11 +124,11 @@
|
||||||
allowedIPs = [ "10.100.0.13/32" ];
|
allowedIPs = [ "10.100.0.13/32" ];
|
||||||
}
|
}
|
||||||
{ # meow
|
{ # meow
|
||||||
publicKey = "Jn3py2rxRuoluUl4eKxK+m+f21wMzQ4xI+NOMt7Oihc="
|
publicKey = "Jn3py2rxRuoluUl4eKxK+m+f21wMzQ4xI+NOMt7Oihc=";
|
||||||
allowedIPs = [ "10.100.0.14/32" ];
|
allowedIPs = [ "10.100.0.14/32" ];
|
||||||
}
|
}
|
||||||
{ # fetti
|
{ # fetti
|
||||||
publicKey = "g92YcBJQK/MOWMbpF8wZV/G8EgKdcIdltfdE/26GgSA="
|
publicKey = "g92YcBJQK/MOWMbpF8wZV/G8EgKdcIdltfdE/26GgSA=";
|
||||||
allowedIPs = [ "10.100.0.15/32" ];
|
allowedIPs = [ "10.100.0.15/32" ];
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
@ -155,7 +155,7 @@
|
||||||
|
|
||||||
# List services that you want to enable:
|
# List services that you want to enable:
|
||||||
|
|
||||||
networking.firewall.allowedTCPPorts = [ 80 443 22 25565 25566 ];
|
networking.firewall.allowedTCPPorts = [ 80 443 22 25565 25566 25567];
|
||||||
|
|
||||||
services.nginx = {
|
services.nginx = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
@ -28,5 +28,20 @@
|
||||||
MEMORY = "16G";
|
MEMORY = "16G";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
fabric = {
|
||||||
|
service.image = "itzg/minecraft-server:java17-jdk";
|
||||||
|
service.volumes = [ "/home/podman/fabric/data:/data" ];
|
||||||
|
service.dns = [ "8.8.8.8" ];
|
||||||
|
service.network_mode = "host";
|
||||||
|
service.environment = {
|
||||||
|
EULA = "true";
|
||||||
|
TYPE = "FABRIC";
|
||||||
|
VERSION = "1.20.1";
|
||||||
|
MEMORY = "16G";
|
||||||
|
OPS = "Fallingsky04";
|
||||||
|
SERVER_PORT = "25567";
|
||||||
|
SEED="-2098004362385192995";
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue