From 2ff744d3e932372e401a49e38f14cec9a699279d Mon Sep 17 00:00:00 2001
From: tv <tv@krebsco.de>
Date: Thu, 11 Feb 2021 23:21:11 +0100
Subject: [PATCH] tv public_html: move to /srv

---
 tv/2configs/nginx/public_html.nix | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/tv/2configs/nginx/public_html.nix b/tv/2configs/nginx/public_html.nix
index a37498ba3..43d7189ef 100644
--- a/tv/2configs/nginx/public_html.nix
+++ b/tv/2configs/nginx/public_html.nix
@@ -12,9 +12,9 @@ with import <stockholm/lib>;
         "${config.krebs.build.host.name}.hkw"
         "${config.krebs.build.host.name}.r"
       ];
-      locations."~ ^/~(.+?)(/.*)?\$".extraConfig = ''
-        alias /home/$1/public_html$2;
-      '';
+      locations."~ ^/~([a-z]+)(?:/(.*))?\$" = {
+        alias = "/srv/$1/public_html/$2";
+      };
     };
   };
   tv.iptables.input-internet-accept-tcp = singleton "http";