dokuwiki: add draft

This commit is contained in:
quinn
2022-10-25 18:52:11 +02:00
parent cba5f6f62f
commit b0de1793cc

View File

@@ -0,0 +1,19 @@
{ config, pkgs, ... }:
{
services.dokuwiki."malo" = {
enable = true;
aclUse = true;
usersFile = "/var/lib/dokuwiki/malo/users.auth.php";
nginx = {
forceSSL = true;
enableACME = true;
serverName = "wiki.malobeo.org";
};
disableActions = "register";
extraConfig = ''
$conf['title'] = 'malobeo wiki';
$conf['lang'] = 'en';
'';
};
}