snowfield/modules/nginx/default.nix
2021-12-22 12:24:13 +01:00

32 lines
656 B
Nix

{ lib, pkgs, config, ... }:
with lib;
let cfg = config.luj.nginx;
in {
options.luj.nginx = {
enable = mkEnableOption "activate nginx service";
email = mkOption {
type = types.str;
default = "julien.malka@me.com";
};
};
config = mkIf cfg.enable {
security.acme.email = "${cfg.email}";
security.acme.acceptTerms = true;
users.groups.nginx = { name = "nginx"; };
services.nginx = {
enable = true;
recommendedOptimisation = true;
recommendedTlsSettings = true;
clientMaxBodySize = "128m";
commonHttpConfig = ''
server_names_hash_bucket_size 128;
'';
};
};
}