diff options
Diffstat (limited to 'ops/modules/git-serving.nix')
-rw-r--r-- | ops/modules/git-serving.nix | 23 |
1 files changed, 1 insertions, 22 deletions
diff --git a/ops/modules/git-serving.nix b/ops/modules/git-serving.nix index 49af01a0fd3e..57f08cbc5f45 100644 --- a/ops/modules/git-serving.nix +++ b/ops/modules/git-serving.nix @@ -1,13 +1,4 @@ -# Configures public git-serving infrastructure for TVL, this involves: -# -# 1. cgit (running at code.tvl.fyi) for web views of the repository -# 2. josh (for cloning the repository and its distinct subtrees) -# -# We also run Sourcegraph for browsing the repository, but this is -# currently configured in a separate module -# (//ops/modules/sourcegraph.nix) -# -# TODO(tazjin): Move //web/cgit-taz configuration in here instead. +# Configures the public josh instance for serving the depot. { config, depot, lib, pkgs, ... }: let @@ -25,18 +16,6 @@ in }; config = lib.mkIf cfg.enable { - # Run cgit for the depot. The onion here is nginx(thttpd(cgit)). - systemd.services.cgit = { - wantedBy = [ "multi-user.target" ]; - script = "${depot.web.cgit-taz}/bin/cgit-launch"; - - serviceConfig = { - Restart = "on-failure"; - User = "git"; - Group = "git"; - }; - }; - # Run josh for the depot. systemd.services.josh = { description = "josh - partial cloning of monorepos"; |