summary refs log tree commit diff
path: root/nixos/modules/services/networking/nghttpx/server-options.nix
blob: ef23bfd793c5c08989f4b9c106242f5eabc90692 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ lib, ... }:
{ options = {
    host = lib.mkOption {
      type        = lib.types.str;
      example     = "127.0.0.1";
      description = ''
        Server host address.
      '';
    };
    port = lib.mkOption {
      type        = lib.types.int;
      example     = 5088;
      description = ''
        Server host port.
      '';
    };
  };
}