vuls: init at 0.27.0
[NixPkgs.git] / nixos / modules / services / networking / nghttpx / server-options.nix
blobef23bfd793c5c08989f4b9c106242f5eabc90692
1 { lib, ... }:
2 { options = {
3     host = lib.mkOption {
4       type        = lib.types.str;
5       example     = "127.0.0.1";
6       description = ''
7         Server host address.
8       '';
9     };
10     port = lib.mkOption {
11       type        = lib.types.int;
12       example     = 5088;
13       description = ''
14         Server host port.
15       '';
16     };
17   };