This commit is contained in:
Rik Berkelder 2025-02-12 22:11:50 +01:00
commit 698993349c
26 changed files with 430 additions and 0 deletions

26
nextcloud-data/.htaccess Normal file
View file

@ -0,0 +1,26 @@
# Generated by Nextcloud on 2025-02-12 16:50:38
# 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>