nixfiles/profiles/nginx.nix

17 lines
425 B
Nix
Raw Normal View History

2022-11-20 11:04:42 +00:00
{ lib, ... }: {
2021-12-28 21:42:46 +00:00
security.acme = {
2021-12-31 12:53:52 +00:00
defaults = { email = "chaoticryptidz@owo.monster"; };
2021-12-28 21:42:46 +00:00
acceptTerms = true;
};
services.nginx = {
enable = true;
recommendedGzipSettings = true;
recommendedOptimisation = true;
recommendedProxySettings = true;
recommendedTlsSettings = true;
commonHttpConfig = "";
2022-11-20 11:04:42 +00:00
clientMaxBodySize = lib.mkDefault "512m";
2022-01-01 17:28:16 +00:00
serverNamesHashBucketSize = 1024;
2021-12-28 21:42:46 +00:00
};
2022-11-02 11:32:03 +00:00
}