diff options
author | makefu <github@syntax-fehler.de> | 2016-12-24 23:38:01 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2016-12-24 23:38:01 +0100 |
commit | 1745abde62a68800e065aca8c0d8452ebd005da6 (patch) | |
tree | 30c6a557e55bb6a78588ee73f68d8db59d9d217e /makefu/2configs/nginx/update.connector.one.nix | |
parent | 78c50fe49599b5c3dd147ebd23253fa2abe53998 (diff) |
m 2 *: krebs.nginx -> services.nginx
Diffstat (limited to 'makefu/2configs/nginx/update.connector.one.nix')
-rw-r--r-- | makefu/2configs/nginx/update.connector.one.nix | 30 |
1 files changed, 12 insertions, 18 deletions
diff --git a/makefu/2configs/nginx/update.connector.one.nix b/makefu/2configs/nginx/update.connector.one.nix index 593f23199..44345dcd8 100644 --- a/makefu/2configs/nginx/update.connector.one.nix +++ b/makefu/2configs/nginx/update.connector.one.nix @@ -1,25 +1,19 @@ { config, lib, pkgs, ... }: with import <stockholm/lib>; -let - hostname = config.krebs.build.host.name; - external-ip = config.krebs.build.host.nets.internet.ip4.addr; -in { - krebs.nginx = { +{ + services.nginx = { enable = mkDefault true; - servers = { - update-connector-one = { - listen = [ "${external-ip}:80" ]; - server-names = [ - "update.connector.one" - "firmware.connector.one" - ]; - locations = singleton (nameValuePair "/" '' - autoindex on; - root /var/www/update.connector.one; - sendfile on; - gzip on; - ''); + virtualHosts."update.connector.one" = { + locations = { + "/" = { + root = "/var/www/update.connector.one"; + extraConfig = '' + autoindex on; + sendfile on; + gzip on; + ''; + }; }; }; }; |