{ config, lib, pkgs, ... }: { networking.firewall.allowedTCPPorts = [ 80 443 ]; services.nginx = { enable = true; recommendedOptimisation = true; recommendedTlsSettings = true; recommendedProxySettings = true; # virtualHosts = { # "stuebinm.eu" = { # forceSSL = true; # enableACME = true; # root = "/var/www/stats"; # }; # }; }; }