added minecraft server. Backup solution is a bit ugly ATM.

This commit is contained in:
Gabe Venberg 2025-04-11 23:38:32 +02:00
parent 39bee826c3
commit 10289cb930
8 changed files with 94 additions and 9 deletions

View file

@ -0,0 +1,13 @@
{
inputs,
config,
pkgs,
lib,
...
}: {
services.nginx.virtualHosts."static.venberg.xyz" = {
enableACME = true;
forceSSL = true;
root = "/storage/static";
};
}