blob: 4744713f7ae9138944dfb54ffe526b543eef302a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# Apache config snippet. To be used by /etc/httpd/conf.d/*.conf files
# with Include. Allows access from any system.
<IfModule mod_authz_core.c>
# Apache 2.4
Require all granted
</IfModule>
<IfModule !mod_authz_core.c>
# Apache 2.2
Order Deny,Allow
Allow from all
</IfModule>
|