.htaccess 485 B

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