Essai de fix le template mais tjrs cassé
This commit is contained in:
parent
0d171f8026
commit
deffeb3ef5
1 changed files with 45 additions and 39 deletions
|
@ -1,4 +1,4 @@
|
|||
{ pkgs, ... }:
|
||||
{ pkgs, config, ... }:
|
||||
let
|
||||
hostname = "hackens.ens.fr";
|
||||
in
|
||||
|
@ -9,24 +9,25 @@ in
|
|||
enable = true;
|
||||
|
||||
extraConfig = ''
|
||||
$conf['template'] = 'dokuwiki';
|
||||
$conf['license'] = 'cc-by-sa';
|
||||
$conf['title'] = 'hackEns';
|
||||
$conf['start'] = 'accueil';
|
||||
$conf['lang'] = 'fr';
|
||||
$conf['template'] = 'bootstrap3';
|
||||
$conf['license'] = 'cc-by-sa';
|
||||
$conf['breadcrumbs'] = 0; # On s'en fiche de l'historique des pages visitées
|
||||
$conf['youarehere'] = true; # Par contre on veut notre position dans la hiérarchie du site
|
||||
# On veut que les liens externes s'ouvrent dans de nouveaux onglets
|
||||
$conf['breadcrumbs'] = 0; // On s'en fiche de l'historique des pages visitées
|
||||
$conf['youarehere'] = true; // Par contre on veut notre position dans la hiérarchie du site
|
||||
// On veut que les liens externes s'ouvrent dans de nouveaux onglets
|
||||
$conf['target'] = array(
|
||||
'extern' => '_tab'
|
||||
);
|
||||
$conf['htmlok'] = 1; # On peut mettre du html dans les pages
|
||||
$conf['htmlok'] = 1; // On peut mettre du html dans les pages
|
||||
$conf['sitemap'] = 7;
|
||||
$conf['rss_type'] = 'rss2';
|
||||
$conf['userewrite'] = 1; # Important, sinon on casse tout avec les règles nginx définies par le module nixos
|
||||
$conf['userewrite'] = 1; // Important, sinon on casse tout avec les règles nginx définies par le module nixos
|
||||
$conf['useslash'] = 1;
|
||||
$conf['plugin']['tokenbucketauth']['tba_send_mail'] = 'hackens@clipper.ens.fr'; # Ban auto des IPs qui brute-forcent
|
||||
$conf['htmlmail'] = 0; # On envoie les mails en plain text
|
||||
$conf['plugin']['tokenbucketauth']['tba_send_mail'] = 'hackens@clipper.ens.fr'; // Ban auto des IPs qui brute-forcent
|
||||
$conf['htmlmail'] = 0; // On envoie les mails en plain text
|
||||
$conf['allowdebug'] = 1;
|
||||
'';
|
||||
|
||||
pluginsConfig = ''
|
||||
|
@ -40,20 +41,16 @@ in
|
|||
disableActions = "register";
|
||||
superUser = "@admin";
|
||||
|
||||
acluse = true;
|
||||
aclUse = true;
|
||||
|
||||
# Il faut packager les templates
|
||||
templates = let
|
||||
template-bootstrap3 = { logo, favicon, apple-touch-icon }: pkgs.stdenv.mkDerivation {
|
||||
template-bootstrap3 = { version, logo, favicon, apple-touch-icon, dokuwikiPkgs }: pkgs.stdenv.mkDerivation {
|
||||
name = "bootstrap3";
|
||||
# Download the theme from the dokuwiki site
|
||||
src = fetchFromGitHub {
|
||||
owner = "giterlizzi";
|
||||
repo = "dokuwiki-template-bootstrap3";
|
||||
rev="v2021-03-11";
|
||||
};
|
||||
src = pkgs.fetchFromGitHub version;
|
||||
# We need unzip to build this package
|
||||
buildInputs = [ pkgs.unzip ];
|
||||
# buildInputs = [ pkgs.unzip ];
|
||||
# Installing simply means copying all files to the output directory
|
||||
installPhase = ''
|
||||
mkdir -p $out
|
||||
|
@ -64,22 +61,31 @@ in
|
|||
ln -s ${logo} $out/images/logo.png
|
||||
ln -s ${favicon} $out/images/favicon.ico
|
||||
ln -s ${apple-touch-icon} $out/images/apple-touch-icon.png
|
||||
echo "<?php define('DOKU_INC', '${dokuwikiPkgs}/share/dokuwiki/');" > $out/doku_inc.php # Lien vers le dokuwiki
|
||||
'';
|
||||
};
|
||||
# And then pass this theme to the template list like this:
|
||||
in [
|
||||
template-bootstrap3 {
|
||||
(template-bootstrap3 {
|
||||
version = {
|
||||
owner = "giterlizzi";
|
||||
repo = "dokuwiki-template-bootstrap3";
|
||||
rev="v2020-07-29";
|
||||
#sha256="0cwi7hi59s8p4wfgday2kcj42i1v0hh3f96rnmm1qi6scbb002hi";
|
||||
sha256="05d6si1lci3a2pgd10iwpwrgl969y7gq4qsn5p1lbgxkraad17af";
|
||||
};
|
||||
logo = ./media/logo.png;
|
||||
favicon = ./media/favicon.ico;
|
||||
apple-touch-icon = ./media/logo.png;
|
||||
}
|
||||
dokuwikiPkgs = config.services.dokuwiki.sites."${hostname}".package; # Erreur, ce n'est pas le bon package
|
||||
})
|
||||
];
|
||||
};
|
||||
# On veut php-xml
|
||||
services.phpfpm.pools."dokuwiki-${hostname}".phpPackage = pkgs.php74.withExtensions(
|
||||
{ all, ... }:
|
||||
[
|
||||
services.phpfpm.pools."dokuwiki-${hostname}".phpPackage = pkgs.lib.mkForce ( pkgs.php74.withExtensions (
|
||||
{ all, enabled, ... }:
|
||||
enabled ++ [
|
||||
all.xml
|
||||
];
|
||||
);
|
||||
]
|
||||
));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue