0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-16 23:20:56 +03:00
nixpkgs/nixos/modules/services/networking/nghttpx/server-options.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
331 B
Nix
Raw Permalink Normal View History

{ 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.
'';
};
};
}