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

22 lines
486 B
Nix
Raw Normal View History

2016-02-14 16:43:44 +01:00
{ config, lib, ... }:
2016-02-01 17:18:07 +01:00
2016-10-20 20:54:38 +02:00
with import <stockholm/lib>;
2016-02-01 17:18:07 +01:00
{
services.nginx = {
2016-02-01 17:18:07 +01:00
enable = true;
virtualHosts.default = {
serverAliases = [
2016-12-22 21:53:09 +01:00
"localhost"
"${config.krebs.build.host.name}"
"${config.krebs.build.host.name}.gg23"
2016-12-22 21:53:09 +01:00
"${config.krebs.build.host.name}.r"
];
locations."~ ^/~(.+?)(/.*)?\$".extraConfig = ''
alias /home/$1/public_html$2;
'';
2016-12-22 21:53:09 +01:00
};
2016-02-01 17:18:07 +01:00
};
2016-06-30 00:52:35 +02:00
tv.iptables.input-internet-accept-tcp = singleton "http";
2016-02-01 17:18:07 +01:00
}