summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/nginx
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2016-02-01 21:58:54 +0100
committermakefu <github@syntax-fehler.de>2016-02-01 21:58:54 +0100
commit40b13f240888be643e19939ceef79483aeb07ca5 (patch)
tree55ca5fe4fdd7d8c1aa6d4b5eb43bb9803b9c765e /makefu/2configs/nginx
parent461fe008e72995a42e8546d5dcc46382ca820000 (diff)
ma 1 gum: host update.connector.one
Diffstat (limited to 'makefu/2configs/nginx')
-rw-r--r--makefu/2configs/nginx/update.connector.one.nix26
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 00000000..eb39a166
--- /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;
+ '');
+ };
+ };
+ };
+}