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

18 lines
352 B
Nix
Raw Normal View History

2016-03-05 11:57:46 +00:00
{ config, lib, ... }:
2016-10-20 18:54:38 +00:00
with import <stockholm/lib>;
2016-03-05 11:57:46 +00:00
{
krebs.nginx = {
servers.default.locations = [
(nameValuePair "= /etc/os-release" ''
default_type text/plain;
alias /etc/os-release;
'')
];
};
tv.iptables = optionalAttrs config.krebs.nginx.enable {
2016-06-29 22:52:35 +00:00
input-retiolum-accept-tcp = singleton "http";
2016-03-05 11:57:46 +00:00
};
}