about summary refs log tree commit diff
path: root/modules/server/cgit/default.nix
blob: d7259759d81aab5f31876e1eabd38993d6b9686e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{ lib, pkgs, config, ... }:

let
  inherit (builtins) split;
  inherit (lib) flip foldr groupBy head literalExpression mapAttrs
    mapAttrs' mapAttrsToList mkOption nameValuePair optionalAttrs types;

  cfg = config.services.cgit-qyliss;

  instancesByVhost = groupBy ({ value, ... }: value.vhost)
    (mapAttrsToList nameValuePair cfg.instances);

  vhostConfigs = mapAttrs (vhost: instances:
    foldr (l: r: l // r) {} (map ({ name, value }: let
      unslashedPath = head (split "/+$" value.path);
      # We'll be dealing almost exclusively with paths ending in /,
      # since otherwise Nginx likes to do simple prefix matching.
      path = "${unslashedPath}/";
    in {
      locations = {
        ${path} = {
          alias = "${value.package}/cgit/";
          tryFiles = "$uri @${name}-cgit";
        };
        "@${name}-cgit" = {
          proxyPass = "http://unix:/run/cgit/${name}.sock";
        };
      } // optionalAttrs (unslashedPath != "") {
        ${unslashedPath} = {
          return = "301 ${path}";
        };
      };

      extraConfig = ''
        if ($http_user_agent = "my-tiny-bot") {
          return 429;
        }
        if ($http_user_agent = "thesis-research-bot") {
          return 429;
        }
      '';
    }) instances)
  ) instancesByVhost;
in

{
  options.services.cgit-qyliss = {
    instances = mkOption {
      type = types.attrsOf (types.submodule {
        options = {
          vhost = mkOption {
            type = types.str;
            example = "spectrum-os.org";
            description = "Nginx vhost for the cgit";
          };

          path = mkOption {
            type = types.strMatching "/(.*[^/])?";
            default = "/";
            example = "/git";
            description = ''
              Path to be appended to all cgit URLs.

              Leading slashes are mandatory; trailing slashes are forbidden.
            '';
          };

          package = mkOption {
            type = types.package;
            default = pkgs.cgit;
            defaultText = literalExpression "pkgs.cgit";
            description = "cgit package to use";
          };

          config = mkOption {
            type = types.package;
            description = ''
              Configuration file for cgit.  See
              <citerefentry><refentrytitle>cgitrc</refentrytitle>
              <manvolnum>5</manvolnum></citerefentry>.
            '';
          };
        };
      });
      default = {};
      description = "List of cgit instances to run";
    };
  };

  config = {
    services.nginx.virtualHosts = vhostConfigs;

    systemd.services = flip mapAttrs' cfg.instances (name: instance: {
      name = "lighttpd-${name}@";
      value = {
        unitConfig.CollectMode = "inactive-or-failed";
        serviceConfig.StandardInput = "socket";
        serviceConfig.StandardOutput = "socket";
        serviceConfig.StandardError = "journal";
        serviceConfig.DynamicUser = true;
        serviceConfig.Type = "oneshot";
        serviceConfig.TimeoutSec = "30";
        serviceConfig.ExecStart = "${lib.getExe pkgs.lighttpd} -1 -f ${pkgs.writeText "lighttpd-${name}.conf" ''
          server.modules = ( "mod_alias", "mod_setenv", "mod_cgi" )

          server.document-root = "/var/empty"
          server.errorlog-use-syslog = "enable"

          alias.url = (
            "${if instance.path == "/" then "" else instance.path}" =>
              "${instance.package}/cgit/cgit.cgi"
          )

          cgi.assign = (
            "cgit.cgi" => "${instance.package}/cgit/cgit.cgi"
          )

          setenv.add-environment = (
            "CGIT_CONFIG" => "${instance.config}"
          )
        ''}";
      };
    });

    systemd.sockets = flip mapAttrs' cfg.instances (name: instance: {
      name = "lighttpd-${name}";
      value = {
        wantedBy = [ "sockets.target" ];
        socketConfig.ListenStream = "/run/cgit/${name}.sock";
        socketConfig.Accept = "yes";
      };
    });
  };
}