nixos/h2o: disable OCSP stapling in tests (#393760)

Changed files
+6
nixos
tests
+2
nixos/tests/web-servers/h2o/basic.nix
···
];
extraSettings = {
minimum-version = "TLSv1.3";
+
# when using common ACME certs, disable talking to CA
+
ocsp-update-interval = 0;
};
};
settings = {
+4
nixos/tests/web-servers/h2o/tls-recommendations.nix
···
certificate-file = ../../common/acme/server/acme.test.cert.pem;
}
];
+
extraSettings = {
+
# when using common ACME certs, disable talking to CA
+
ocsp-update-interval = 0;
+
};
};
settings = {
paths."/"."file.file" = "${hello_txt recommendations}";