mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-20 00:19:25 +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 baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
88 lines
2.1 KiB
Nix
88 lines
2.1 KiB
Nix
{ cfg }:
|
||
{
|
||
config,
|
||
lib,
|
||
name,
|
||
...
|
||
}:
|
||
let
|
||
inherit (lib) literalExpression mkOption types;
|
||
in
|
||
{
|
||
options = {
|
||
|
||
hostName = mkOption {
|
||
type = types.str;
|
||
default = name;
|
||
description = "Canonical hostname for the server.";
|
||
};
|
||
|
||
serverAliases = mkOption {
|
||
type = with types; listOf str;
|
||
default = [ ];
|
||
example = [
|
||
"www.example.org"
|
||
"example.org"
|
||
];
|
||
description = ''
|
||
Additional names of virtual hosts served by this virtual host configuration.
|
||
'';
|
||
};
|
||
|
||
listenAddresses = mkOption {
|
||
type = with types; listOf str;
|
||
description = ''
|
||
A list of host interfaces to bind to for this virtual host.
|
||
'';
|
||
default = [ ];
|
||
example = [
|
||
"127.0.0.1"
|
||
"::1"
|
||
];
|
||
};
|
||
|
||
useACMEHost = mkOption {
|
||
type = types.nullOr types.str;
|
||
default = null;
|
||
description = ''
|
||
A host of an existing Let's Encrypt certificate to use.
|
||
This is mostly useful if you use DNS challenges but Caddy does not
|
||
currently support your provider.
|
||
|
||
*Note that this option does not create any certificates, nor
|
||
does it add subdomains to existing ones – you will need to create them
|
||
manually using [](#opt-security.acme.certs).*
|
||
'';
|
||
};
|
||
|
||
logFormat = mkOption {
|
||
type = types.lines;
|
||
default = ''
|
||
output file ${cfg.logDir}/access-${config.hostName}.log
|
||
'';
|
||
defaultText = ''
|
||
output file ''${config.services.caddy.logDir}/access-''${hostName}.log
|
||
'';
|
||
example = literalExpression ''
|
||
mkForce '''
|
||
output discard
|
||
''';
|
||
'';
|
||
description = ''
|
||
Configuration for HTTP request logging (also known as access logs). See
|
||
<https://caddyserver.com/docs/caddyfile/directives/log#log>
|
||
for details.
|
||
'';
|
||
};
|
||
|
||
extraConfig = mkOption {
|
||
type = types.lines;
|
||
default = "";
|
||
description = ''
|
||
Additional lines of configuration appended to this virtual host in the
|
||
automatically generated `Caddyfile`.
|
||
'';
|
||
};
|
||
|
||
};
|
||
}
|