mirror of
https://src.fedoraproject.org/rpms/nextcloud.git
synced 2025-01-10 10:51:54 +01:00
13 lines
263 B
PHP
13 lines
263 B
PHP
|
# Apache config snippet. To be used by /etc/httpd/conf.d/*.conf files
|
||
|
# with Include. Denies all access.
|
||
|
|
||
|
<IfModule mod_authz_core.c>
|
||
|
# Apache 2.4
|
||
|
Require all denied
|
||
|
</IfModule>
|
||
|
<IfModule !mod_authz_core.c>
|
||
|
# Apache 2.2
|
||
|
Order Deny,Allow
|
||
|
Deny from all
|
||
|
</IfModule>
|