stockholm/tv/2configs/nginx-public_html.nix
2016-02-01 17:18:07 +01:00

15 lines
206 B
Nix

{ lib, ... }:
with lib;
{
krebs.nginx = {
enable = true;
servers.default.locations = [
(nameValuePair "~ ^/~(.+?)(/.*)?\$" ''
alias /home/$1/public_html$2;
'')
];
};
}