Merge pull request #94624 from dadada/dadada/dokuwiki-acl-path

nixos/dokuwiki: fix path to ACL
This commit is contained in:
Aaron Andersen 2020-08-05 07:28:12 -04:00 committed by GitHub
commit 4e3b009778
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -95,7 +95,7 @@ let
aclFile = mkOption {
type = with types; nullOr str;
default = if (config.aclUse && config.acl == null) then "/var/lib/dokuwiki/${name}/users.auth.php" else null;
default = if (config.aclUse && config.acl == null) then "/var/lib/dokuwiki/${name}/acl.auth.php" else null;
description = ''
Location of the dokuwiki acl rules. Mutually exclusive with services.dokuwiki.acl
Mutually exclusive with services.dokuwiki.acl which is preferred.