stockholm/tv/2configs/nginx/default.nix
2016-07-03 19:38:06 +02:00

22 lines
398 B
Nix

{ config, lib, ... }:
with config.krebs.lib;
{
krebs.nginx = {
extraConfig = ''
events {
}
'';
servers.default.locations = [
(nameValuePair "= /etc/os-release" ''
default_type text/plain;
alias /etc/os-release;
'')
];
};
tv.iptables = optionalAttrs config.krebs.nginx.enable {
input-retiolum-accept-tcp = singleton "http";
};
}