Skip to content

Commit 057f7c4

Browse files
Merge pull request #1371 from flyingcircusio/PL-131278-nginx-fix-sensu-servername
nginx: make HTTPS sensu check work for vhost name != serverName
2 parents 8da5b46 + 2b0f6d1 commit 057f7c4

File tree

1 file changed

+27
-17
lines changed

1 file changed

+27
-17
lines changed

nixos/services/nginx/default.nix

+27-17
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,16 @@ let
8383
lib.filterAttrs (_: val: val ? emailACME && val.emailACME != null) cfg.virtualHosts
8484
);
8585

86-
acmeVhosts = (lib.filterAttrs (_: vhost: vhost.enableACME) nginxCfg.virtualHosts);
86+
acmeVhostsWithTLS = (
87+
lib.filterAttrs (
88+
_: vhost:
89+
let
90+
onlySSL = vhost.onlySSL || vhost.enableSSL;
91+
hasSSL = onlySSL || vhost.addSSL || vhost.forceSSL;
92+
in
93+
vhost.enableACME && hasSSL
94+
) nginxCfg.virtualHosts
95+
);
8796

8897
mainConfig = ''
8998
worker_processes ${toString cfg.workerProcesses};
@@ -478,22 +487,23 @@ in
478487
};
479488

480489
}
481-
// (lib.listToAttrs (
482-
map (
483-
n:
484-
lib.nameValuePair "nginx_https_${n}" {
485-
notification = "HTTPS certificate check failed for vhost ${n}";
486-
# We're using a timeout of 15 seconds because 10 seconds is the timeout
487-
# that will trigger if DNS issues occur and giving the check a higher
488-
# timeout allows us to see those. Otherwise they get hidden behind
489-
# a generic timeout message.
490-
# Note that we assume that the certificate is reachable via port 443.
491-
# Other configurations might need overrides for the sensu check command.
492-
command = "check_http -p 443 -S --sni -C 25,14 -H ${n} -t 15";
493-
interval = 600;
494-
}
495-
) (lib.attrNames acmeVhosts)
496-
));
490+
// (lib.mapAttrs' (
491+
n: vhost:
492+
let
493+
host = if vhost.serverName != null then vhost.serverName else n;
494+
in
495+
lib.nameValuePair "nginx_https_${n}" {
496+
notification = "HTTPS certificate check failed for vhost ${n}";
497+
# We're using a timeout of 15 seconds because 10 seconds is the timeout
498+
# that will trigger if DNS issues occur and giving the check a higher
499+
# timeout allows us to see those. Otherwise they get hidden behind
500+
# a generic timeout message.
501+
# Note that we assume that the certificate is reachable via port 443.
502+
# Other configurations might need overrides for the sensu check command.
503+
command = "check_http -p 443 -S --sni -C 25,14 -H ${host} -t 15";
504+
interval = 600;
505+
}
506+
) acmeVhostsWithTLS);
497507

498508
networking.firewall.allowedTCPPorts = [
499509
80

0 commit comments

Comments
 (0)