nixfiles/hosts/hetzner-vm/services/nginx.nix

19 lines
430 B
Nix
Raw Normal View History

2021-12-28 22:06:26 +00:00
{ ... }: {
2021-12-28 21:42:46 +00:00
security.acme = {
2021-12-31 12:09:12 +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 = "";
clientMaxBodySize = "512m";
};
networking.firewall.allowedTCPPorts = [ 80 443 ];
2021-12-28 22:06:26 +00:00
}