Revert "cluster/services/nginx: switch to OpenSSL 1.1 to mitigate a to-be-disclosed vulnerability"

This reverts commit 41448f0c23.
Fixed upstream: https://github.com/NixOS/nixpkgs/pull/199001
This commit is contained in:
Max Headroom 2022-11-02 20:47:50 +01:00
parent 2913839058
commit 784be19d88
2 changed files with 1 additions and 8 deletions

View file

@ -1,6 +1,6 @@
{
services.nginx = {
nodes.host = [ "VEGAS" "prophet" ];
nixos.host = [ ./nginx.nix ./openssl-1.1.nix ];
nixos.host = [ ./nginx.nix ];
};
}

View file

@ -1,7 +0,0 @@
{ pkgs, ... }:
{
services.nginx.package = pkgs.nginx.override {
openssl = pkgs.openssl_1_1;
};
}