diff options
author | makefu <github@syntax-fehler.de> | 2016-01-16 02:01:48 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2016-01-16 02:01:48 +0100 |
commit | 7cf54a1d791fff716968a145feb55f28b84aef76 (patch) | |
tree | c140efc5965c2b4a74c1a479b7867148ea9bb4c6 /makefu/2configs/nginx | |
parent | 3bb965c3f071f30a2ac381fb18cb2da5603193a3 (diff) | |
parent | 0c1c54e728d8838b184d43a9adb67f4258a21569 (diff) |
Merge branch 'master' of gum:stockholm
Diffstat (limited to 'makefu/2configs/nginx')
-rw-r--r-- | makefu/2configs/nginx/omo-share.nix | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/makefu/2configs/nginx/omo-share.nix b/makefu/2configs/nginx/omo-share.nix new file mode 100644 index 000000000..ce85e0442 --- /dev/null +++ b/makefu/2configs/nginx/omo-share.nix @@ -0,0 +1,34 @@ +{ 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; + ''); + }; + }; + }; +} |