nixos-config/hosts/falkenstein-1/modules/nginx/default.nix

19 lines
397 B
Nix
Raw Normal View History

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