2016-02-14 15:43:44 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
2015-07-11 14:55:22 +00:00
|
|
|
|
2016-02-14 15:43:44 +00:00
|
|
|
with config.krebs.lib;
|
2015-07-11 14:55:22 +00:00
|
|
|
let
|
2015-07-24 09:50:23 +00:00
|
|
|
cfg = config.krebs.nginx;
|
2015-07-11 14:55:22 +00:00
|
|
|
|
|
|
|
out = {
|
2015-07-24 09:50:23 +00:00
|
|
|
options.krebs.nginx = api;
|
2016-02-14 15:43:44 +00:00
|
|
|
config = lib.mkIf cfg.enable imp;
|
2015-07-11 14:55:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
api = {
|
2015-07-24 09:50:23 +00:00
|
|
|
enable = mkEnableOption "krebs.nginx";
|
2015-07-11 14:55:22 +00:00
|
|
|
|
2016-03-15 22:54:53 +00:00
|
|
|
default404 = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = true;
|
|
|
|
description = ''
|
|
|
|
By default all requests not directed to an explicit hostname are
|
|
|
|
replied with a 404 error to avoid accidental exposition of nginx
|
|
|
|
services.
|
|
|
|
|
|
|
|
Set this value to `false` to disable this behavior - you will then be
|
|
|
|
able to configure a new `default_server` in the listen address entries
|
|
|
|
again.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2015-07-16 16:07:20 +00:00
|
|
|
servers = mkOption {
|
2016-02-27 16:23:59 +00:00
|
|
|
type = types.attrsOf (types.submodule {
|
|
|
|
options = {
|
|
|
|
server-names = mkOption {
|
|
|
|
type = with types; listOf str;
|
|
|
|
# TODO use identity
|
|
|
|
default = [
|
|
|
|
"${config.networking.hostName}"
|
|
|
|
"${config.networking.hostName}.retiolum"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
listen = mkOption {
|
|
|
|
type = with types; either str (listOf str);
|
|
|
|
default = "80";
|
|
|
|
apply = x:
|
|
|
|
if typeOf x != "list"
|
|
|
|
then [x]
|
|
|
|
else x;
|
|
|
|
};
|
|
|
|
locations = mkOption {
|
|
|
|
type = with types; listOf (attrsOf str);
|
|
|
|
default = [];
|
|
|
|
};
|
|
|
|
extraConfig = mkOption {
|
|
|
|
type = with types; string;
|
|
|
|
default = "";
|
|
|
|
};
|
2015-07-16 16:07:20 +00:00
|
|
|
};
|
2016-02-27 16:23:59 +00:00
|
|
|
});
|
2015-07-16 16:07:20 +00:00
|
|
|
default = {};
|
2015-07-11 14:55:22 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
imp = {
|
2015-07-16 16:07:20 +00:00
|
|
|
services.nginx = {
|
|
|
|
enable = true;
|
|
|
|
httpConfig = ''
|
|
|
|
default_type application/octet-stream;
|
|
|
|
sendfile on;
|
|
|
|
keepalive_timeout 65;
|
|
|
|
gzip on;
|
2016-03-15 22:54:53 +00:00
|
|
|
|
|
|
|
${optionalString cfg.default404 ''
|
|
|
|
server {
|
|
|
|
listen 80 default_server;
|
|
|
|
server_name _;
|
|
|
|
return 404;
|
|
|
|
}''}
|
|
|
|
|
2015-07-16 16:07:20 +00:00
|
|
|
${concatStrings (mapAttrsToList (_: to-server) cfg.servers)}
|
|
|
|
'';
|
|
|
|
};
|
2015-07-11 14:55:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
indent = replaceChars ["\n"] ["\n "];
|
|
|
|
|
|
|
|
to-location = { name, value }: ''
|
|
|
|
location ${name} {
|
|
|
|
${indent value}
|
|
|
|
}
|
|
|
|
'';
|
|
|
|
|
2015-10-19 18:42:18 +00:00
|
|
|
to-server = { server-names, listen, locations, extraConfig, ... }: ''
|
2015-07-16 16:07:20 +00:00
|
|
|
server {
|
2015-10-20 16:53:11 +00:00
|
|
|
${concatMapStringsSep "\n" (x: "listen ${x};") listen}
|
2015-07-16 16:07:20 +00:00
|
|
|
server_name ${toString server-names};
|
2016-02-13 15:07:01 +00:00
|
|
|
${indent extraConfig}
|
|
|
|
${indent (concatMapStrings to-location locations)}
|
2015-07-16 16:07:20 +00:00
|
|
|
}
|
|
|
|
'';
|
|
|
|
|
2015-07-11 14:55:22 +00:00
|
|
|
in
|
|
|
|
out
|