https://github.com/owncloud/core
Raw File
Tip revision: bc14d38e50aefc8650f01e383d5d0287a583d61e authored by Michael Barz on 05 October 2021, 20:27:00 UTC
add config to hide disabled sharees
Tip revision: bc14d38
.htaccess
# line below if for Apache 2.4
<ifModule mod_authz_core.c>
Require all denied
</ifModule>

# line below if for Apache 2.2
<ifModule !mod_authz_core.c>
deny from all
</ifModule>

# section for Apache 2.2 and 2.4
<ifModule mod_autoindex.c>
IndexIgnore *
</ifModule>
back to top