Minecraft world download flow

This commit is contained in:
h3lp
2026-03-11 16:31:08 +02:00
parent 216cde95c5
commit 946366309c
3 changed files with 35 additions and 0 deletions
+14
View File
@@ -127,6 +127,7 @@
curl
unzip
xz
nginx
];
# Enable the OpenSSH daemon.
@@ -218,4 +219,17 @@
};
};
services.nginx = {
enable = true;
virtualHosts."_" = {
root = "/var/www/hostedfiles";
locations."/" = {
extraConfig = "autoindex on;";
};
};
};
systemd.tmpfiles.rules = [
"d /var/www/hostedfiles 0755 h3lp h3lp -"
];
}