summary refs log tree commit diff
path: root/nixos/modules/services/web-servers/nginx/gitweb.nix
blob: f7fb07bb79755234b8dc6c1d86f56568d8c3d482 (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
{ config, lib, pkgs, ... }:

with lib;

let
  cfg = config.services.nginx.gitweb;
  gitwebConfig = config.services.gitweb;
  package = pkgs.gitweb.override (optionalAttrs gitwebConfig.gitwebTheme {
    gitwebTheme = true;
  });

in
{

  options.services.nginx.gitweb = {

    enable = mkOption {
      default = false;
      type = types.bool;
      description = ''
        If true, enable gitweb in nginx.
      '';
    };

    location = mkOption {
      default = "/gitweb";
      type = types.str;
      description = ''
        Location to serve gitweb on.
      '';
    };

    user = mkOption {
      default = "nginx";
      type = types.str;
      description = ''
        Existing user that the CGI process will belong to. (Default almost surely will do.)
      '';
    };

    group = mkOption {
      default = "nginx";
      type = types.str;
      description = ''
        Group that the CGI process will belong to. (Set to <literal>config.services.gitolite.group</literal> if you are using gitolite.)
      '';
    };

    virtualHost = mkOption {
      default = "_";
      type = types.str;
      description = ''
        VirtualHost to serve gitweb on. Default is catch-all.
      '';
    };

  };

  config = mkIf cfg.enable {

    systemd.services.gitweb = {
      description = "GitWeb service";
      script = "${package}/gitweb.cgi --fastcgi --nproc=1";
      environment  = {
        FCGI_SOCKET_PATH = "/run/gitweb/gitweb.sock";
      };
      serviceConfig = {
        User = cfg.user;
        Group = cfg.group;
        RuntimeDirectory = [ "gitweb" ];
      };
      wantedBy = [ "multi-user.target" ];
    };

    services.nginx = {
      virtualHosts.${cfg.virtualHost} = {
        locations."${cfg.location}/static/" = {
          alias = "${package}/static/";
        };
        locations."${cfg.location}/" = {
          extraConfig = ''
            include ${pkgs.nginx}/conf/fastcgi_params;
            fastcgi_param GITWEB_CONFIG ${gitwebConfig.gitwebConfigFile};
            fastcgi_pass unix:/run/gitweb/gitweb.sock;
          '';
        };
      };
    };

  };

  meta.maintainers = with maintainers; [ gnidorah ];

}