Ajout des extensions d'Auth (encore à config)

wiki
Lyes Saadi 2025-05-28 00:27:59 +02:00
parent d6b3f7791e
commit 7b5c12a52e
No known key found for this signature in database
GPG Key ID: 55A1D803917CF39A
1 changed files with 28 additions and 2 deletions

View File

@ -41,8 +41,8 @@ in
$wgPasswordSender = 'root@crans.org'; $wgPasswordSender = 'root@crans.org';
$wgEmergencyContact = 'contact@crans.org'; $wgEmergencyContact = 'contact@crans.org';
$wgNoReplyAddress = 'root@crans.org'; $wgNoReplyAddress = 'root@crans.org';
$wgEnableUserEmail = true; $wgEnableUserEmail = false;
$wgEnableSpecialMute = true; # $wgEnableSpecialMute = true;
$wgAllowHTMLEmail = true; $wgAllowHTMLEmail = true;
$wgEnotifUseRealName = false; $wgEnotifUseRealName = false;
@ -103,6 +103,32 @@ in
# Pas de meilleure solution à ma connaissance pour suivre les releases. # Pas de meilleure solution à ma connaissance pour suivre les releases.
sha256 = "sha256-deKDEC87yTQrToZC5yNAH9tmV/5pFa4gsaSuOYXfIEo="; sha256 = "sha256-deKDEC87yTQrToZC5yNAH9tmV/5pFa4gsaSuOYXfIEo=";
}; };
# Auth
PluggableAuth = pkgs.fetchFromGitHub {
owner = "wikimedia";
repo = "mediawiki-extensions-PluggableAuth";
rev = "REL" + major + "_" + minor;
# Le SHA doit être changé à chaque nouveau commit de traduction.
# Pas de meilleure solution à ma connaissance pour suivre les releases.
sha256 = "sha256-3+nzeWemVAHGmLz3ZMvDSvP2UCmsnEiGJcE/oEakr2s=";
};
LDAPAuthentication2 = pkgs.fetchFromGitHub {
owner = "wikimedia";
repo = "mediawiki-extensions-LDAPAuthentication2";
rev = "REL" + major + "_" + minor;
# Le SHA doit être changé à chaque nouveau commit de traduction.
# Pas de meilleure solution à ma connaissance pour suivre les releases.
sha256 = "sha256-oi5rliHb4KnLbvQxO7MGuLp/FEucoGR/Z0NP1gmbgMc=";
};
OpenIDConnect = pkgs.fetchFromGitHub {
owner = "wikimedia";
repo = "mediawiki-extensions-OpenIDConnect";
rev = "REL" + major + "_" + minor;
# Le SHA doit être changé à chaque nouveau commit de traduction.
# Pas de meilleure solution à ma connaissance pour suivre les releases.
sha256 = "sha256-KoBULn53xnY+ydodeTGN7YEoqgLr9qhhuR5mNibbh5s=";
};
}; };
}; };
} }