Merge pull request #146638 from NixOS/mmahut/nginx_bool

authored by

Sandro and committed by
GitHub
aa3130f1 935c9a36

+1 -1
+1 -1
nixos/modules/services/monitoring/prometheus/exporters/nginx.nix
··· 47 47 ExecStart = '' 48 48 ${pkgs.prometheus-nginx-exporter}/bin/nginx-prometheus-exporter \ 49 49 --nginx.scrape-uri '${cfg.scrapeUri}' \ 50 - --nginx.ssl-verify ${toString cfg.sslVerify} \ 50 + --nginx.ssl-verify ${boolToString cfg.sslVerify} \ 51 51 --web.listen-address ${cfg.listenAddress}:${toString cfg.port} \ 52 52 --web.telemetry-path ${cfg.telemetryPath} \ 53 53 --prometheus.const-labels ${concatStringsSep "," cfg.constLabels} \