nixfiles/profiles/nginx.nix

17 lines
421 B
Nix
Raw Normal View History

{lib, ...}: {
2021-12-28 21:42:46 +00:00
security.acme = {
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
}