forked from kalipso/infrastructure
20 lines
396 B
Nix
20 lines
396 B
Nix
{ 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';
|
|
'';
|
|
};
|
|
}
|