From 351ed4f044753bc4b1f3dcdc83b96a32f7dcaeeb Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Fri, 26 Jun 2020 20:28:06 +0100 Subject: fix(tazjin/homepage): Fix configuration settings after page moves My personal pages have moved out of //web, and various changes were necessary to keep everything working. Change-Id: I2f81fdd8ba2ce2ce6fea7e329bbdcda6092cc8a6 Reviewed-on: https://cl.tvl.fyi/c/depot/+/604 Reviewed-by: tazjin --- users/tazjin/nixos/camden/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'users/tazjin/nixos') diff --git a/users/tazjin/nixos/camden/default.nix b/users/tazjin/nixos/camden/default.nix index 5b751c0338..3d21113563 100644 --- a/users/tazjin/nixos/camden/default.nix +++ b/users/tazjin/nixos/camden/default.nix @@ -321,11 +321,11 @@ in lib.fix(self: { serverAliases = [ "camden.tazj.in" ]; default = true; useACMEHost = "tazj.in"; - root = depot.web.homepage; + root = depot.users.tazjin.homepage; forceSSL = true; extraConfig = '' - ${depot.web.blog.oldRedirects} + ${depot.users.tazjin.blog.oldRedirects} add_header Strict-Transport-Security "max-age=31536000; includeSubDomains; preload" always; @@ -334,7 +334,7 @@ in lib.fix(self: { } location /blog/ { - alias ${depot.web.blog.rendered}/; + alias ${depot.users.tazjin.blog.rendered}/; if ($request_uri ~ ^/(.*)\.html$) { return 302 /$1; -- cgit 1.4.1