mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-14 13:39:15 +03:00

After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRev57b193d8dd
result/bin/apply-formatting $NIXPKGS_PATH
68 lines
1.9 KiB
Nix
68 lines
1.9 KiB
Nix
{ lib, ... }:
|
|
{
|
|
options = {
|
|
tls = lib.mkOption {
|
|
type = lib.types.enum [
|
|
"tls"
|
|
"no-tls"
|
|
];
|
|
default = "tls";
|
|
description = ''
|
|
Enable or disable TLS. If true (enabled) the key and
|
|
certificate must be configured for nghttpx.
|
|
|
|
Please see https://nghttp2.org/documentation/nghttpx.1.html#cmdoption-nghttpx-f
|
|
for more detail.
|
|
'';
|
|
};
|
|
|
|
sni-fwd = lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = false;
|
|
description = ''
|
|
When performing a match to select a backend server, SNI host
|
|
name received from the client is used instead of the request
|
|
host. See --backend option about the pattern match.
|
|
|
|
Please see https://nghttp2.org/documentation/nghttpx.1.html#cmdoption-nghttpx-f
|
|
for more detail.
|
|
'';
|
|
};
|
|
|
|
api = lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = false;
|
|
description = ''
|
|
Enable API access for this frontend. This enables you to
|
|
dynamically modify nghttpx at run-time therefore this feature
|
|
is disabled by default and should be turned on with care.
|
|
|
|
Please see https://nghttp2.org/documentation/nghttpx.1.html#cmdoption-nghttpx-f
|
|
for more detail.
|
|
'';
|
|
};
|
|
|
|
healthmon = lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = false;
|
|
description = ''
|
|
Make this frontend a health monitor endpoint. Any request
|
|
received on this frontend is responded to with a 200 OK.
|
|
|
|
Please see https://nghttp2.org/documentation/nghttpx.1.html#cmdoption-nghttpx-f
|
|
for more detail.
|
|
'';
|
|
};
|
|
|
|
proxyproto = lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = false;
|
|
description = ''
|
|
Accept PROXY protocol version 1 on frontend connection.
|
|
|
|
Please see https://nghttp2.org/documentation/nghttpx.1.html#cmdoption-nghttpx-f
|
|
for more detail.
|
|
'';
|
|
};
|
|
};
|
|
}
|