diff options
author | Franck Cuny <franck@fcuny.net> | 2022-05-26 19:43:46 -0700 |
---|---|---|
committer | Franck Cuny <franck.cuny@gmail.com> | 2022-05-27 11:26:26 -0700 |
commit | 272b9233878e9db8ecd96d863c5e541aa839149c (patch) | |
tree | c8cbbe9a796f2bccaccee0a4af2177259b94ea82 /modules | |
parent | ref(gerrit): ensure the git user is present (diff) | |
download | world-272b9233878e9db8ecd96d863c5e541aa839149c.tar.gz |
feat(cgit): add a module for cgit
cgit is a git web viewer, it will be hosted at git.fcuny.net to replace gitea. Change-Id: I16561776fa90a3561d6a13f8545bd2e8f67f409a Reviewed-on: https://cl.fcuny.net/c/world/+/46 Reviewed-by: Franck Cuny <franck.cuny@gmail.com>
Diffstat (limited to '')
-rw-r--r-- | modules/services/cgit/default.nix | 51 | ||||
-rw-r--r-- | modules/services/default.nix | 1 |
2 files changed, 52 insertions, 0 deletions
diff --git a/modules/services/cgit/default.nix b/modules/services/cgit/default.nix new file mode 100644 index 0000000..c8c312b --- /dev/null +++ b/modules/services/cgit/default.nix @@ -0,0 +1,51 @@ +{ config, pkgs, lib, ... }: +let + cfg = config.my.services.cgit; + cgitrc = '' + # Global configuration + virtual-root=/ + enable-http-clone=0 + source-filter=${pkgs.cgit}/lib/cgit/filters/syntax-highlighting.py + about-filter=${pkgs.cgit}/lib/cgit/filters/about-formatting.sh + readme=:README.md + enable-log-filecount=1 + enable-log-linecount=1 + enable-follow-links=1 + enable-blame=1 + + # Repository configuration + repo.url=world + repo.path=/var/lib/gerrit/git/world.git/ + repo.clone-url=https://git.fcuny.net/world.git + ''; +in { + options.my.services.cgit = with lib; { + enable = mkEnableOption "git web viewer"; + }; + + config = lib.mkIf cfg.enable { + services.fcgiwrap = { + enable = true; + user = "git"; + group = "git"; + }; + + services.nginx.virtualHosts."git.fcuny.net" = { + forceSSL = true; + enableACME = true; + locations = { + "~* ^.+.(css|png|ico)$" = { root = "${pkgs.cgit}/cgit"; }; + "/".extraConfig = '' + include ${pkgs.nginx}/conf/fastcgi_params; + fastcgi_param CGIT_CONFIG ${pkgs.writeText "cgitrc" cgitrc}; + fastcgi_param SCRIPT_FILENAME ${pkgs.cgit}/cgit/cgit.cgi; + fastcgi_split_path_info ^(/?)(.+)$; + fastcgi_param PATH_INFO $fastcgi_path_info; + fastcgi_param HTTP_HOST $server_name; + fastcgi_param QUERY_STRING $args; + fastcgi_pass unix:${config.services.fcgiwrap.socketAddress}; + ''; + }; + }; + }; +} diff --git a/modules/services/default.nix b/modules/services/default.nix index ae9be9c..2c3ee63 100644 --- a/modules/services/default.nix +++ b/modules/services/default.nix @@ -4,6 +4,7 @@ imports = [ ./avahi ./backup + ./cgit ./drone ./fwupd ./gerrit |