diff options
author | makefu <github@syntax-fehler.de> | 2016-02-01 21:58:54 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2016-02-01 21:58:54 +0100 |
commit | 40b13f240888be643e19939ceef79483aeb07ca5 (patch) | |
tree | 55ca5fe4fdd7d8c1aa6d4b5eb43bb9803b9c765e /makefu/2configs/nginx/update.connector.one.nix | |
parent | 461fe008e72995a42e8546d5dcc46382ca820000 (diff) |
ma 1 gum: host update.connector.one
Diffstat (limited to 'makefu/2configs/nginx/update.connector.one.nix')
-rw-r--r-- | makefu/2configs/nginx/update.connector.one.nix | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/makefu/2configs/nginx/update.connector.one.nix b/makefu/2configs/nginx/update.connector.one.nix new file mode 100644 index 000000000..eb39a1668 --- /dev/null +++ b/makefu/2configs/nginx/update.connector.one.nix @@ -0,0 +1,26 @@ +{ config, lib, pkgs, ... }: + +with lib; +let + hostname = config.krebs.build.host.name; + external-ip = head config.krebs.build.host.nets.internet.addrs4; +in { + krebs.nginx = { + enable = mkDefault true; + servers = { + omo-share = { + 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; + ''); + }; + }; + }; +} |