repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
vuls: init at 0.27.0
[NixPkgs.git]
/
nixos
/
modules
/
services
/
networking
/
nghttpx
/
server-options.nix
blob
ef23bfd793c5c08989f4b9c106242f5eabc90692
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
};
18
}