htaccess-Datei funktioniert nicht

Immer noch der selbe Fehler hier.

localhost ist bei mir schon raus aus den trusted_domains

$CONFIG = array (
  'passwordsalt' => 'geheim',
  'secret' => 'geheim',
  'trusted_domains' =>
  array (
    0 => 'cloud.meine-domain.de',
  ),

Hier noch die .htaccess aus dem Datenordner:

~# cat /home/meine-domain/web/cloud.meine-domain.de/private/data/.htaccess
# Generated by Nextcloud on 2024-06-26 08:24:30
# Section for Apache 2.4 to 2.6
<IfModule mod_authz_core.c>
  Require all denied
</IfModule>
<IfModule mod_access_compat.c>
  Order Allow,Deny
  Deny from all
  Satisfy All
</IfModule>

# Section for Apache 2.2
<IfModule !mod_authz_core.c>
  <IfModule !mod_access_compat.c>
    <IfModule mod_authz_host.c>
      Order Allow,Deny
      Deny from all
    </IfModule>
    Satisfy All
  </IfModule>
</IfModule>

# Section for Apache 2.2 to 2.6
<IfModule mod_autoindex.c>
  IndexIgnore *
</IfModule>

Ich habe diesen Thread hierzu gefunden How to test if my files are not accessible from the internet? - #9 by ernolf
d.h. der Fehler erscheint, wenn die “environmental value htaccessWorking nicht gesetzt ist”. Gestzt wird sie durch den .htaccess Eintrag server/.htaccess at 7e9f5238729c3d523c4b96507d297bb81a2a3397 · nextcloud/server · GitHub

So, warum wird sie hier also NICHT gesetzt ist jetzt die Frage :thinking:
Das Modul env_module ist geladen:

# apachectl -M 2>/dev/null | grep env_module
 env_module (shared)