diff options
Diffstat (limited to 'ops/modules')
-rw-r--r-- | ops/modules/josh.nix (renamed from ops/modules/git-serving.nix) | 10 | ||||
-rw-r--r-- | ops/modules/www/code.tvl.fyi.nix | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/ops/modules/git-serving.nix b/ops/modules/josh.nix index 57f08cbc5f45..be9e9e966e6b 100644 --- a/ops/modules/git-serving.nix +++ b/ops/modules/josh.nix @@ -2,13 +2,13 @@ { config, depot, lib, pkgs, ... }: let - cfg = config.services.depot.git-serving; + cfg = config.services.depot.josh; in { - options.services.depot.git-serving = with lib; { - enable = mkEnableOption "Enable cgit & josh configuration"; + options.services.depot.josh = with lib; { + enable = mkEnableOption "Enable josh for serving the depot"; - joshPort = mkOption { + port = mkOption { description = "Port on which josh should listen"; type = types.int; default = 5674; @@ -26,7 +26,7 @@ in DynamicUser = true; StateDirectory = "josh"; Restart = "always"; - ExecStart = "${depot.third_party.josh}/bin/josh-proxy --no-background --local /var/lib/josh --port ${toString cfg.joshPort} --remote https://cl.tvl.fyi/"; + ExecStart = "${depot.third_party.josh}/bin/josh-proxy --no-background --local /var/lib/josh --port ${toString cfg.port} --remote https://cl.tvl.fyi/"; }; }; }; diff --git a/ops/modules/www/code.tvl.fyi.nix b/ops/modules/www/code.tvl.fyi.nix index 4c182d34f28d..3f34a9422cb1 100644 --- a/ops/modules/www/code.tvl.fyi.nix +++ b/ops/modules/www/code.tvl.fyi.nix @@ -22,7 +22,7 @@ # Git operations on depot.git hit josh location /depot.git { - proxy_pass http://localhost:${toString config.services.depot.git-serving.joshPort}; + proxy_pass http://localhost:${toString config.services.depot.josh.port}; } # Git clone operations on '/' should be redirected to josh now. |