summary refs log tree commit diff
path: root/nixos/modules/services/web-apps/dokuwiki.nix
diff options
context:
space:
mode:
authordadada <dadada@dadada.li>2020-08-03 23:40:41 +0200
committerdadada <dadada@dadada.li>2020-08-03 23:40:41 +0200
commit938bd67988a71ed73533325fb679065ac2fb6ed7 (patch)
tree33e0344181079742630a214f5d11fc7228778856 /nixos/modules/services/web-apps/dokuwiki.nix
parent712026ead1fd2654a231f288260c81dea0ca80c4 (diff)
downloadnixpkgs-938bd67988a71ed73533325fb679065ac2fb6ed7.tar
nixpkgs-938bd67988a71ed73533325fb679065ac2fb6ed7.tar.gz
nixpkgs-938bd67988a71ed73533325fb679065ac2fb6ed7.tar.bz2
nixpkgs-938bd67988a71ed73533325fb679065ac2fb6ed7.tar.lz
nixpkgs-938bd67988a71ed73533325fb679065ac2fb6ed7.tar.xz
nixpkgs-938bd67988a71ed73533325fb679065ac2fb6ed7.tar.zst
nixpkgs-938bd67988a71ed73533325fb679065ac2fb6ed7.zip
nixos/dokuwiki: fix path to ACL
Diffstat (limited to 'nixos/modules/services/web-apps/dokuwiki.nix')
-rw-r--r--nixos/modules/services/web-apps/dokuwiki.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/web-apps/dokuwiki.nix b/nixos/modules/services/web-apps/dokuwiki.nix
index 76e18266a27..ef07373ffd3 100644
--- a/nixos/modules/services/web-apps/dokuwiki.nix
+++ b/nixos/modules/services/web-apps/dokuwiki.nix
@@ -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.