m 3 tinc_graphs: make first working version

This commit is contained in:
makefu 2015-10-04 18:55:36 +02:00
parent d768877c34
commit fad02c8d24

View File

@ -8,16 +8,38 @@ let
out = { out = {
options.makefu.tinc_graphs = api; options.makefu.tinc_graphs = api;
config = mkIf cfg.enable imp; config = mkIf cfg.enable imp ;
}; };
api = { api = {
enable = mkEnableOption "makefu.tinc_graphs"; enable = mkEnableOption "tinc graphs";
geodbPath = mkOption { geodbPath = mkOption {
type = types.str; type = types.str;
description = "Path to geocitydb, defaults to geolite-legacy"; description = "Path to geocitydb, defaults to geolite-legacy";
default = "${geolite-legacy}/share/GeoIP/GeoIPCity.dat"; default = "${pkgs.geolite-legacy}/share/GeoIP/GeoIPCity.dat";
};
krebsNginx = {
# configure krebs nginx to serve the new graphs
enable = mkEnableOption "tinc_graphs nginx";
hostnames_complete = {
#TODO: this is not a secure way to serve these graphs,better listen to
# the correct interface, krebs.nginx does not support this yet
type = with types; listOf str;
description = "hostname which serves complete graphs";
default = config.krebs.build.host.name;
};
hostnames_anonymous = {
type = with types; listOf str;
description = ''
hostname which serves anonymous graphs
must be different from hostname_complete
'';
};
}; };
workingDir = mkOption { workingDir = mkOption {
@ -26,7 +48,7 @@ let
Path to working dir, will create interal and external/. Path to working dir, will create interal and external/.
Defaults to the new users home dir which defaults to Defaults to the new users home dir which defaults to
/var/cache/tinc_graphs''; /var/cache/tinc_graphs'';
default = users.extraUsers.tinc_graphs.home; default = config.users.extraUsers.tinc_graphs.home;
}; };
timerConfig = mkOption { timerConfig = mkOption {
@ -38,7 +60,7 @@ let
}; };
imp = { imp = {
environment.systemPackages = [ pkgs.tinc_graphs];
systemd.timers.tinc_graphs = { systemd.timers.tinc_graphs = {
description = "Build Tinc Graphs via via timer"; description = "Build Tinc Graphs via via timer";
@ -48,22 +70,23 @@ let
description = "Build Tinc Graphs"; description = "Build Tinc Graphs";
wantedBy = [ "multi-user.target" ]; wantedBy = [ "multi-user.target" ];
after = [ "network.target" ]; after = [ "network.target" ];
environment = {
EXTERNAL_FOLDER = external_dir;
INTERNAL_FOLDER = internal_dir;
GEODB = cfg.geodbPath;
};
restartIfChanged = true; restartIfChanged = true;
serviceConfig = { serviceConfig = {
Type = "simple"; Type = "simple";
environment = { ExecStartPre = pkgs.writeScript "tinc_graphs-init" ''
EXTERNAL_FOLDER = external_dir;
INTERNAL_FOLDER = internal_dir;
GEODB = cfg.geodbPath;
};
ExecStartPre = ''
#!/bin/sh #!/bin/sh
mkdir -p "$EXTERNAL_FOLDER" "$INTERNAL_FOLDER" mkdir -p "${external_dir}" "${internal_dir}"
''; '';
ExecStart = "${pkgs.tinc_graphs}/bin/all-the-graphs"; ExecStart = "${pkgs.tinc_graphs}/bin/all-the-graphs";
User = "tinc_graphs"; User = "root"; # tinc cannot be queried as user,
# seems to be a tinc-pre issue
privateTmp = true; privateTmp = true;
}; };
}; };
@ -73,6 +96,26 @@ let
home = "/var/cache/tinc_graphs"; home = "/var/cache/tinc_graphs";
createHome = true; createHome = true;
}; };
krebs.nginx.servers = mkIf cfg.krebsNginx.enable {
tinc_graphs_complete = {
server-names = cfg.krebsNginx.hostnames_complete;
locations = [
(nameValuePair "/" ''
root ${internal_dir};
'')
];
};
tinc_graphs_anonymous = {
server-names = cfg.krebsNginx.hostnames_anonymous;
#server-names = [ "dick" ];
locations = [
(nameValuePair "/" ''
root ${external_dir};
'')
];
};
};
}; };
in in