stockholm/tv/2configs/nginx-public_html.nix

16 lines
270 B
Nix
Raw Normal View History

2016-02-01 16:18:07 +00:00
{ lib, ... }:
with lib;
{
krebs.nginx = {
enable = true;
servers.default.locations = [
(nameValuePair "~ ^/~(.+?)(/.*)?\$" ''
alias /home/$1/public_html$2;
'')
];
};
2016-02-01 16:46:33 +00:00
tv.iptables.input-internet-accept-new-tcp = singleton "http";
2016-02-01 16:18:07 +00:00
}