{ ... }: { flake.nixosModules.nginx = { config, lib, ... }: { config = { containers.esotericbytes-com = { autoStart = true; privateNetwork = true; hostAddress = "192.168.100.10"; localAddress = "192.168.100.13"; bindMounts = { "/var/www/data" = { hostPath = "/ssd1/esotericbytes-com/data"; isReadOnly = false; }; }; config = { services.nginx = { enable = true; virtualHosts = { "esotericbytes.com" = { enableACME = false; forceSSL = false; root = "/var/www/data"; }; }; }; networking.firewall.allowedTCPPorts = [ 80 ]; system.stateVersion = "24.05"; }; }; }; }; }