nixos-config/hosts/nuc/modules/nginx/default.nix

18 lines
360 B
Nix
Raw Normal View History

2023-05-05 23:43:40 +02:00
{ ... }:
2023-01-24 11:58:36 +01:00
{
2023-01-24 12:15:51 +01:00
networking.firewall.allowedTCPPorts = [ 80 443 ];
2023-05-05 23:43:40 +02:00
services.nginx = {
enable = true;
recommendedTlsSettings = true;
recommendedProxySettings = true;
recommendedGzipSettings = true;
recommendedOptimisation = true;
};
2023-01-24 11:58:36 +01:00
security.acme = {
acceptTerms = true;
defaults = {
email = "rouven@rfive.de";
};
};
}