diff options
author | makefu <github@syntax-fehler.de> | 2015-07-29 14:56:06 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2015-07-29 14:56:06 +0200 |
commit | 0bf2b871dda30231443324588ab8142e125e9774 (patch) | |
tree | 0646d45eab135eb2c7d8665c31d7ac135e29afff /krebs/3modules/nginx.nix | |
parent | 671710c573980d859cb82993cd0514058a63262f (diff) | |
parent | 1bf670270c1e87900a908f7e9b949b5502158f4f (diff) |
merge cloudkrebs, fix path to krebs/4lib
Diffstat (limited to 'krebs/3modules/nginx.nix')
-rw-r--r-- | krebs/3modules/nginx.nix | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/krebs/3modules/nginx.nix b/krebs/3modules/nginx.nix new file mode 100644 index 000000000..702e8a7f6 --- /dev/null +++ b/krebs/3modules/nginx.nix @@ -0,0 +1,72 @@ +{ config, pkgs, lib, ... }: + +with builtins; +with lib; +let + cfg = config.krebs.nginx; + + out = { + options.krebs.nginx = api; + config = mkIf cfg.enable imp; + }; + + api = { + enable = mkEnableOption "krebs.nginx"; + + servers = mkOption { + type = with types; attrsOf optionSet; + options = singleton { + server-names = mkOption { + type = with types; listOf str; + # TODO use identity + default = [ + "${config.networking.hostName}" + "${config.networking.hostName}.retiolum" + ]; + }; + locations = mkOption { + type = with types; listOf (attrsOf str); + }; + }; + default = {}; + }; + }; + + imp = { + services.nginx = { + enable = true; + httpConfig = '' + include ${pkgs.nginx}/conf/mime.types; + default_type application/octet-stream; + sendfile on; + keepalive_timeout 65; + gzip on; + server { + listen 80 default_server; + server_name _; + return 404; + } + ${concatStrings (mapAttrsToList (_: to-server) cfg.servers)} + ''; + }; + }; + + + indent = replaceChars ["\n"] ["\n "]; + + to-location = { name, value }: '' + location ${name} { + ${indent value} + } + ''; + + to-server = { server-names, locations, ... }: '' + server { + listen 80; + server_name ${toString server-names}; + ${indent (concatStrings (map to-location locations))} + } + ''; + +in +out |