public-cof: NC25 → NC26

Get us rid of RC4 encryption shenigans.
This commit is contained in:
Raito Bezarius 2023-07-23 17:52:45 +02:00
parent 55c7194022
commit 2ab0cc6885

View file

@ -5,14 +5,7 @@
hostName = "nuage.beta.rz.ens.wtf";
https = true;
package = pkgs.nextcloud25;
# OpenSSL 3.0.x breaks RC4 encryption for NextCloud
# But we enabled encryption for NextCloud
# Therefore...
phpPackage = lib.mkForce (pkgs.php81.withExtensions ({ enabled, all }:
(lib.filter (e: e != pkgs.php81.extensions.openssl) enabled)
++ [ (all.openssl.override { buildInputs = [ pkgs.openssl_1_1 ]; }) ]
));
package = pkgs.nextcloud26;
config = {
overwriteProtocol = "https";