diff options
author | tv <tv@krebsco.de> | 2016-12-23 09:46:32 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2016-12-24 06:52:34 +0100 |
commit | eafa36c2b10ddf16163007aa58ed5e2444c251b6 (patch) | |
tree | 471d7b8b6488e8cbe46e752aeb36a2faa2b3574f /tv/2configs/binary-cache | |
parent | 03689799d66e8a58caf340e721e229524091eb2d (diff) |
tv: replace krebs.nginx by services.nginx.virtualHosts
Diffstat (limited to 'tv/2configs/binary-cache')
-rw-r--r-- | tv/2configs/binary-cache/default.nix | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tv/2configs/binary-cache/default.nix b/tv/2configs/binary-cache/default.nix index 5902f1895..39c944b1a 100644 --- a/tv/2configs/binary-cache/default.nix +++ b/tv/2configs/binary-cache/default.nix @@ -19,15 +19,15 @@ source-path = toString <secrets> + "/nix-serve.key"; }; - krebs.nginx = { + services.nginx = { enable = true; - servers.nix-serve = { - server-names = [ + virtualHosts.nix-serve = { + serverAliases = [ "cache.${config.krebs.build.host.name}.gg23" ]; - locations = singleton (nameValuePair "/" '' + locations."/".extraConfig = '' proxy_pass http://localhost:${toString config.services.nix-serve.port}; - ''); + ''; }; }; } |