mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 07:34:11 +00:00
6afb255d97
these changes were generated with nixq 0.0.2, by running nixq ">> lib.mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> Inherit >> mdDoc[remove]" --batchmode nixos/**.nix two mentions of the mdDoc function remain in nixos/, both of which are inside of comments. Since lib.mdDoc is already defined as just id, this commit is a no-op as far as Nix (and the built manual) is concerned.
63 lines
1.7 KiB
Nix
63 lines
1.7 KiB
Nix
{ config, lib, options, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.lighttpd.collectd;
|
|
opt = options.services.lighttpd.collectd;
|
|
|
|
collectionConf = pkgs.writeText "collection.conf" ''
|
|
datadir: "${config.services.collectd.dataDir}"
|
|
libdir: "${config.services.collectd.package}/lib/collectd"
|
|
'';
|
|
|
|
defaultCollectionCgi = config.services.collectd.package.overrideDerivation(old: {
|
|
name = "collection.cgi";
|
|
dontConfigure = true;
|
|
buildPhase = "true";
|
|
installPhase = ''
|
|
substituteInPlace contrib/collection.cgi --replace '"/etc/collection.conf"' '$ENV{COLLECTION_CONF}'
|
|
cp contrib/collection.cgi $out
|
|
'';
|
|
});
|
|
in
|
|
{
|
|
|
|
options.services.lighttpd.collectd = {
|
|
|
|
enable = mkEnableOption "collectd subservice accessible at http://yourserver/collectd";
|
|
|
|
collectionCgi = mkOption {
|
|
type = types.path;
|
|
default = defaultCollectionCgi;
|
|
defaultText = literalMD ''
|
|
`config.${options.services.collectd.package}` configured for lighttpd
|
|
'';
|
|
description = ''
|
|
Path to collection.cgi script from (collectd sources)/contrib/collection.cgi
|
|
This option allows to use a customized version
|
|
'';
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
services.lighttpd.enableModules = [ "mod_cgi" "mod_alias" "mod_setenv" ];
|
|
|
|
services.lighttpd.extraConfig = ''
|
|
$HTTP["url"] =~ "^/collectd" {
|
|
cgi.assign = (
|
|
".cgi" => "${pkgs.perl}/bin/perl"
|
|
)
|
|
alias.url = (
|
|
"/collectd" => "${cfg.collectionCgi}"
|
|
)
|
|
setenv.add-environment = (
|
|
"PERL5LIB" => "${with pkgs.perlPackages; makePerlPath [ CGI HTMLParser URI pkgs.rrdtool ]}",
|
|
"COLLECTION_CONF" => "${collectionConf}"
|
|
)
|
|
}
|
|
'';
|
|
};
|
|
|
|
}
|