You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nextcloud/config/.htaccess

24 lines
454 B
ApacheConf

# Section for Apache 2.4 and 2.5
<ifModule mod_authz_core.c>
Require all denied
</ifModule>
<ifModule mod_access_compat.c>
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>
Deny from all
</ifModule>
Satisfy All
</ifModule>
</ifModule>
# Section for Apache 2.2 to 2.5
<ifModule mod_autoindex.c>
IndexIgnore *
</ifModule>