diff options
author | lassulus <lass@lassul.us> | 2016-12-23 18:38:28 +0100 |
---|---|---|
committer | lassulus <lass@lassul.us> | 2016-12-23 18:38:28 +0100 |
commit | b8975f6ed4cde4af3e72f0f83624221ee6351885 (patch) | |
tree | 53f0207a1b3009999b42b19c6c919b7c95b0a02b /tv/2configs/nginx/default.nix | |
parent | 1d2c9377bc7b21ff7d27c6c04873a46df083d655 (diff) | |
parent | c208b3fa19fc161f44c52433a4e266daade4ce53 (diff) |
Merge remote-tracking branch 'ni/master'
Diffstat (limited to 'tv/2configs/nginx/default.nix')
-rw-r--r-- | tv/2configs/nginx/default.nix | 23 |
1 files changed, 17 insertions, 6 deletions
diff --git a/tv/2configs/nginx/default.nix b/tv/2configs/nginx/default.nix index 39995c052..b0acb9435 100644 --- a/tv/2configs/nginx/default.nix +++ b/tv/2configs/nginx/default.nix @@ -3,15 +3,26 @@ with import <stockholm/lib>; { - krebs.nginx = { - servers.default.locations = [ - (nameValuePair "= /etc/os-release" '' + services.nginx = { + recommendedGzipSettings = true; + recommendedOptimisation = true; + recommendedTlsSettings = true; + + virtualHosts._http = { + default = true; + extraConfig = '' + return 404; + ''; + }; + + virtualHosts.default = { + locations."= /etc/os-release".extraConfig = '' default_type text/plain; alias /etc/os-release; - '') - ]; + ''; + }; }; - tv.iptables = optionalAttrs config.krebs.nginx.enable { + tv.iptables = { input-retiolum-accept-tcp = singleton "http"; }; } |