|
83 | 83 | lib.filterAttrs (_: val: val ? emailACME && val.emailACME != null) cfg.virtualHosts
|
84 | 84 | );
|
85 | 85 |
|
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 | + ); |
87 | 96 |
|
88 | 97 | mainConfig = ''
|
89 | 98 | worker_processes ${toString cfg.workerProcesses};
|
|
478 | 487 | };
|
479 | 488 |
|
480 | 489 | }
|
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); |
497 | 507 |
|
498 | 508 | networking.firewall.allowedTCPPorts = [
|
499 | 509 | 80
|
|
0 commit comments