diff options
author | tv <tv@krebsco.de> | 2016-03-05 12:57:46 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2016-03-05 12:57:46 +0100 |
commit | 7a5c9631f72eeb049cd5c892d84cebd81e6a5019 (patch) | |
tree | a8bc77f83de5267f1355544e78f7a7cc9e52c687 /tv/2configs/nginx | |
parent | 54129c440e467160b4b7339d20a9380fa48a017e (diff) |
tv nginx: expose /etc/os-release
Diffstat (limited to 'tv/2configs/nginx')
-rw-r--r-- | tv/2configs/nginx/default.nix | 17 | ||||
-rw-r--r-- | tv/2configs/nginx/public_html.nix | 15 |
2 files changed, 32 insertions, 0 deletions
diff --git a/tv/2configs/nginx/default.nix b/tv/2configs/nginx/default.nix new file mode 100644 index 000000000..1fac65a31 --- /dev/null +++ b/tv/2configs/nginx/default.nix @@ -0,0 +1,17 @@ +{ 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"; + }; +} diff --git a/tv/2configs/nginx/public_html.nix b/tv/2configs/nginx/public_html.nix new file mode 100644 index 000000000..15a3b5482 --- /dev/null +++ b/tv/2configs/nginx/public_html.nix @@ -0,0 +1,15 @@ +{ config, lib, ... }: + +with config.krebs.lib; + +{ + krebs.nginx = { + enable = true; + servers.default.locations = [ + (nameValuePair "~ ^/~(.+?)(/.*)?\$" '' + alias /home/$1/public_html$2; + '') + ]; + }; + tv.iptables.input-internet-accept-new-tcp = singleton "http"; +} |