Browse Source

Add blossomgrove minecraft server

main
Leonora Tindall 4 months ago
parent
commit
c91d02a6cc
  1. 5
      common/fragments/infrared-reverse-proxy.nix
  2. 32
      common/fragments/minecraft-server.nix
  3. 6
      include/infrared-blossomgrove.home.nora.codes.json

5
common/fragments/infrared-reverse-proxy.nix

@ -22,6 +22,11 @@
source = ../../include/infrared-home.nora.codes.json;
};
environment.etc."infrared/configs/blossomgrove.home.nora.codes" = {
mode = "0666";
source = ../../include/infrared-blossomgrove.home.nora.codes.json;
};
# Port 9136 is for the prom exporter.
networking.firewall.allowedTCPPorts = [ 9136 25565 ];
networking.firewall.allowedUDPPorts = [ 25565 ];

32
common/fragments/minecraft-server.nix

@ -9,7 +9,7 @@
VERSION = "1.19.2";
TYPE = "QUILT";
INIT_MEMORY = "1G";
MAX_MEMORY = "8G";
MAX_MEMORY = "4G";
ALLOW_NETHER = "TRUE";
SEED = "-7159392300545500356";
MOTD = "Minecraft with Quilt on CRIMESPOON via Docker";
@ -22,9 +22,35 @@
ports = ["25565:25565" "25585:25585" "8100:8100"];
volumes = ["/var/games/minecraft:/data"];
};
"many-minecraft-server" = {
image = "itzg/minecraft-server";
environment = {
EULA = "TRUE";
VERSION = "1.19.2";
TYPE = "QUILT";
# These are disabled because I had to manually remove Effectful which
# was crashing the server
#MOD_PLATFORM = "MODRINTH";
#MODRINTH_PROJECT = "ityZivy5";
INIT_MEMORY = "1G";
MAX_MEMORY = "4G";
ALLOW_NETHER = "TRUE";
SEED = "77739";
MOTD = "Blossom Grove's modded community Minecraft server, running BGPack 1.0.0!";
ICON = "https://mindmesh.link/favicon.ico";
SPAWN_PROTECTION="FALSE";
DIFFICULTY="easy";
ENFORCE_WHITELIST = "TRUE";
};
autoStart = true;
ports = ["25566:25565" "25586:25585"];
volumes = ["/var/games/minecraft-many:/data"];
};
};
# Port 8100 is for BlueMap.
networking.firewall.allowedTCPPorts = [ 25565 25585 8100 ];
networking.firewall.allowedUDPPorts = [ 25565 ];
# Port 24454 (U) is for Many's voice chat mod
networking.firewall.allowedTCPPorts = [ 25565 25566 25585 25586 8100 ];
networking.firewall.allowedUDPPorts = [ 25565 25566 24454 ];
}

6
include/infrared-blossomgrove.home.nora.codes.json

@ -0,0 +1,6 @@
{
"domainName": "blossomgrove.home.nora.codes",
"listenTo": "0.0.0.0:25565",
"proxyTo": "crimespoon:25566",
"disconnectMessage": "Sorry {{username}}, but the server appears to be broken. Let Many know!"
}
Loading…
Cancel
Save