mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 03:30:45 +00:00
6afb255d97
these changes were generated with nixq 0.0.2, by running nixq ">> lib.mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> Inherit >> mdDoc[remove]" --batchmode nixos/**.nix two mentions of the mdDoc function remain in nixos/, both of which are inside of comments. Since lib.mdDoc is already defined as just id, this commit is a no-op as far as Nix (and the built manual) is concerned.
72 lines
1.6 KiB
Nix
72 lines
1.6 KiB
Nix
{ config, lib, options, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.services.pgpkeyserver-lite;
|
|
sksCfg = config.services.sks;
|
|
sksOpt = options.services.sks;
|
|
|
|
webPkg = cfg.package;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
options = {
|
|
|
|
services.pgpkeyserver-lite = {
|
|
|
|
enable = mkEnableOption "pgpkeyserver-lite on a nginx vHost proxying to a gpg keyserver";
|
|
|
|
package = mkPackageOption pkgs "pgpkeyserver-lite" { };
|
|
|
|
hostname = mkOption {
|
|
type = types.str;
|
|
description = ''
|
|
Which hostname to set the vHost to that is proxying to sks.
|
|
'';
|
|
};
|
|
|
|
hkpAddress = mkOption {
|
|
default = builtins.head sksCfg.hkpAddress;
|
|
defaultText = literalExpression "head config.${sksOpt.hkpAddress}";
|
|
type = types.str;
|
|
description = ''
|
|
Which IP address the sks-keyserver is listening on.
|
|
'';
|
|
};
|
|
|
|
hkpPort = mkOption {
|
|
default = sksCfg.hkpPort;
|
|
defaultText = literalExpression "config.${sksOpt.hkpPort}";
|
|
type = types.int;
|
|
description = ''
|
|
Which port the sks-keyserver is listening on.
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
services.nginx.enable = true;
|
|
|
|
services.nginx.virtualHosts = let
|
|
hkpPort = builtins.toString cfg.hkpPort;
|
|
in {
|
|
${cfg.hostname} = {
|
|
root = webPkg;
|
|
locations = {
|
|
"/pks".extraConfig = ''
|
|
proxy_pass http://${cfg.hkpAddress}:${hkpPort};
|
|
proxy_pass_header Server;
|
|
add_header Via "1.1 ${cfg.hostname}";
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|