summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/nginx
diff options
context:
space:
mode:
Diffstat (limited to 'makefu/2configs/nginx')
-rw-r--r--makefu/2configs/nginx/omo-share.nix34
-rw-r--r--makefu/2configs/nginx/update.connector.one.nix26
2 files changed, 26 insertions, 34 deletions
diff --git a/makefu/2configs/nginx/omo-share.nix b/makefu/2configs/nginx/omo-share.nix
deleted file mode 100644
index ce85e044..00000000
--- a/makefu/2configs/nginx/omo-share.nix
+++ /dev/null
@@ -1,34 +0,0 @@
-{ config, lib, pkgs, ... }:
-
-with lib;
-let
- hostname = config.krebs.build.host.name;
- # TODO local-ip from the nets config
- local-ip = "192.168.1.11";
- # local-ip = head config.krebs.build.host.nets.retiolum.addrs4;
-in {
- krebs.nginx = {
- enable = mkDefault true;
- servers = {
- omo-share = {
- listen = [ "${local-ip}:80" ];
- locations = singleton (nameValuePair "/" ''
- autoindex on;
- root /media;
- limit_rate_after 100m;
- limit_rate 5m;
- mp4_buffer_size 4M;
- mp4_max_buffer_size 10M;
- allow all;
- access_log off;
- keepalive_timeout 65;
- keepalive_requests 200;
- reset_timedout_connection on;
- sendfile on;
- tcp_nopush on;
- gzip off;
- '');
- };
- };
- };
-}
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;
+ '');
+ };
+ };
+ };
+}