about summary refs log tree commit diff
path: root/ops
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2021-05-24T22·35+0200
committertazjin <mail@tazj.in>2021-05-25T17·10+0000
commitb36a75a22360b351bdc9dffb35aca65add28abd4 (patch)
tree84e2f9a57504e7a2decc3117fe884e877ed1e55d /ops
parent65be8f20e0508cb8f81a7b42a240ebb8a03d8a93 (diff)
fix(wigglydonke.rs): Don't rebuild nginx config unnecessarily r/2631
This fix is essentially the same as the one in cl/1263.

Change-Id: I27be280a610914fcfbb6d7fee7aebaa56b993812
Reviewed-on: https://cl.tvl.fyi/c/depot/+/3158
Reviewed-by: sterni <sternenseemann@systemli.org>
Reviewed-by: grfn <grfn@gws.fyi>
Tested-by: BuildkiteCI
Diffstat (limited to 'ops')
-rw-r--r--ops/modules/www/wigglydonke.rs.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/ops/modules/www/wigglydonke.rs.nix b/ops/modules/www/wigglydonke.rs.nix
index bdfbca58d8..3d85e4eb98 100644
--- a/ops/modules/www/wigglydonke.rs.nix
+++ b/ops/modules/www/wigglydonke.rs.nix
@@ -9,7 +9,7 @@
     services.nginx.virtualHosts."wigglydonke.rs" = {
       enableACME = true;
       forceSSL = true;
-      root = "${depot.path}/users/grfn/wigglydonke.rs";
+      root = "${depot.path + "/users/grfn/wigglydonke.rs"}";
     };
   };
 }