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

18 lines
350 B
Nix
Raw Normal View History

2016-03-05 11:57:46 +00:00
{ config, lib, ... }:
with config.krebs.lib;
{
krebs.nginx = {
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-new-tcp = singleton "http";
};
}