grafana-alloy: don't build the frontend twice
[NixPkgs.git] / nixos / modules / services / web-servers / hitch / default.nix
blobb1c72c0dd7b7b47ae35acd598cb3c39fee2ed7ff
1 { config, lib, pkgs, ...}:
2 let
3   cfg = config.services.hitch;
4   ocspDir = lib.optionalString cfg.ocsp-stapling.enabled "/var/cache/hitch/ocsp";
5   hitchConfig = with lib; pkgs.writeText "hitch.conf" (concatStringsSep "\n" [
6     ("backend = \"${cfg.backend}\"")
7     (concatMapStrings (s: "frontend = \"${s}\"\n") cfg.frontend)
8     (concatMapStrings (s: "pem-file = \"${s}\"\n") cfg.pem-files)
9     ("ciphers = \"${cfg.ciphers}\"")
10     ("ocsp-dir = \"${ocspDir}\"")
11     "user = \"${cfg.user}\""
12     "group = \"${cfg.group}\""
13     cfg.extraConfig
14   ]);
16 with lib;
18   options = {
19     services.hitch = {
20       enable = mkEnableOption "Hitch Server";
22       backend = mkOption {
23         type = types.str;
24         description = ''
25           The host and port Hitch connects to when receiving
26           a connection in the form [HOST]:PORT
27         '';
28       };
30       ciphers = mkOption {
31         type = types.str;
32         default = "EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH";
33         description = "The list of ciphers to use";
34       };
36       frontend = mkOption {
37         type = types.either types.str (types.listOf types.str);
38         default = "[127.0.0.1]:443";
39         description = ''
40           The port and interface of the listen endpoint in the
41           form [HOST]:PORT[+CERT].
42         '';
43         apply = toList;
44       };
46       pem-files = mkOption {
47         type = types.listOf types.path;
48         default = [];
49         description = "PEM files to use";
50       };
52       ocsp-stapling = {
53         enabled = mkOption {
54           type = types.bool;
55           default = true;
56           description = "Whether to enable OCSP Stapling";
57         };
58       };
60       user = mkOption {
61         type = types.str;
62         default = "hitch";
63         description = "The user to run as";
64       };
66       group = mkOption {
67         type = types.str;
68         default = "hitch";
69         description = "The group to run as";
70       };
72       extraConfig = mkOption {
73         type = types.lines;
74         default = "";
75         description = "Additional configuration lines";
76       };
77     };
79   };
81   config = mkIf cfg.enable {
83     systemd.services.hitch = {
84       description = "Hitch";
85       wantedBy = [ "multi-user.target" ];
86       after = [ "network.target" ];
87       preStart = ''
88         ${pkgs.hitch}/sbin/hitch -t --config ${hitchConfig}
89       '' + (optionalString cfg.ocsp-stapling.enabled ''
90         mkdir -p ${ocspDir}
91         chown -R hitch:hitch ${ocspDir}
92       '');
93       serviceConfig = {
94         Type = "forking";
95         ExecStart = "${pkgs.hitch}/sbin/hitch --daemon --config ${hitchConfig}";
96         ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID";
97         Restart = "always";
98         RestartSec = "5s";
99         LimitNOFILE = 131072;
100       };
101     };
103     environment.systemPackages = [ pkgs.hitch ];
105     users.users.hitch = {
106       group = "hitch";
107       isSystemUser = true;
108     };
109     users.groups.hitch = {};
110   };