1
0

.htaccess 424 B

1234567891011121314151617
  1. # SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
  2. # SPDX-FileCopyrightText: 2015 ownCloud, Inc.
  3. # SPDX-License-Identifier: AGPL-3.0-only
  4. # line below if for Apache 2.4
  5. <ifModule mod_authz_core.c>
  6. Require all denied
  7. </ifModule>
  8. # line below if for Apache 2.2
  9. <ifModule !mod_authz_core.c>
  10. deny from all
  11. </ifModule>
  12. # section for Apache 2.2 and 2.4
  13. <ifModule mod_autoindex.c>
  14. IndexIgnore *
  15. </ifModule>