about summary refs log tree commit diff
path: root/web
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@google.com>2020-02-12T01·03+0000
committerVincent Ambo <tazjin@google.com>2020-02-12T01·03+0000
commitf60eb6c3c76347cc5ff304d018763b10d0116e55 (patch)
tree485397581c63f8b651539b86f7997f84099b5df3 /web
parentb4c0292753bf06663ea5a10b3575817b0077c02e (diff)
refactor(web/cgit-taz): Serve depot from disk location on camden r/544
Diffstat (limited to 'web')
-rw-r--r--web/cgit-taz/default.nix7
1 files changed, 3 insertions, 4 deletions
diff --git a/web/cgit-taz/default.nix b/web/cgit-taz/default.nix
index c2dd7a4a47..21f19eaa7d 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
   '';