diff options
author | Vincent Ambo <tazjin@google.com> | 2020-02-12T01·03+0000 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2020-02-12T01·03+0000 |
commit | f60eb6c3c76347cc5ff304d018763b10d0116e55 (patch) | |
tree | 485397581c63f8b651539b86f7997f84099b5df3 | |
parent | b4c0292753bf06663ea5a10b3575817b0077c02e (diff) |
refactor(web/cgit-taz): Serve depot from disk location on camden r/544
-rw-r--r-- | web/cgit-taz/default.nix | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/web/cgit-taz/default.nix b/web/cgit-taz/default.nix index c2dd7a4a4730..21f19eaa7d19 100644 --- a/web/cgit-taz/default.nix +++ b/web/cgit-taz/default.nix @@ -28,18 +28,17 @@ let # Repository configuration repo.url=depot - repo.path=/git/depot/ + repo.path=/var/git/depot/ repo.desc=tazjin's personal monorepo repo.owner=tazjin <mail@tazj.in> - repo.clone-url=https://git.tazj.in ssh://source.developers.google.com:2022/p/tazjins-infrastructure/r/depot + repo.clone-url=https://git.tazj.in ''; thttpdConfig = writeText "thttpd.conf" '' - port=8080 + port=2448 dir=${cgit}/cgit nochroot novhost - logfile=/dev/stdout cgipat=**.cgi ''; |