cluster/services/nginx: switch to OpenSSL 1.1 to mitigate a to-be-disclosed vulnerability
This commit is contained in:
parent
d560d76028
commit
41448f0c23
2 changed files with 8 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
services.nginx = {
|
||||
nodes.host = [ "VEGAS" "prophet" ];
|
||||
nixos.host = [ ./nginx.nix ];
|
||||
nixos.host = [ ./nginx.nix ./openssl-1.1.nix ];
|
||||
};
|
||||
}
|
||||
|
|
7
cluster/services/nginx/openssl-1.1.nix
Normal file
7
cluster/services/nginx/openssl-1.1.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
services.nginx.package = pkgs.nginx.override {
|
||||
openssl = pkgs.openssl_1_1;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue