mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 03:17:13 +00:00
60 lines
1.3 KiB
Nix
60 lines
1.3 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.gitweb;
|
|
|
|
in
|
|
{
|
|
|
|
options.services.nginx.gitweb = {
|
|
|
|
enable = mkOption {
|
|
default = false;
|
|
type = types.bool;
|
|
description = ''
|
|
If true, enable gitweb in nginx. Access it at http://yourserver/gitweb
|
|
'';
|
|
};
|
|
|
|
};
|
|
|
|
config = mkIf config.services.nginx.gitweb.enable {
|
|
|
|
systemd.services.gitweb = {
|
|
description = "GitWeb service";
|
|
script = "${pkgs.git}/share/gitweb/gitweb.cgi --fastcgi --nproc=1";
|
|
environment = {
|
|
FCGI_SOCKET_PATH = "/run/gitweb/gitweb.sock";
|
|
};
|
|
serviceConfig = {
|
|
User = "nginx";
|
|
Group = "nginx";
|
|
RuntimeDirectory = [ "gitweb" ];
|
|
};
|
|
wantedBy = [ "multi-user.target" ];
|
|
};
|
|
|
|
services.nginx = {
|
|
virtualHosts.default = {
|
|
locations."/gitweb/" = {
|
|
root = "${pkgs.git}/share";
|
|
tryFiles = "$uri @gitweb";
|
|
};
|
|
locations."@gitweb" = {
|
|
extraConfig = ''
|
|
include ${pkgs.nginx}/conf/fastcgi_params;
|
|
fastcgi_param GITWEB_CONFIG ${cfg.gitwebConfigFile};
|
|
fastcgi_pass unix:/run/gitweb/gitweb.sock;
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
};
|
|
|
|
meta.maintainers = with maintainers; [ gnidorah ];
|
|
|
|
}
|