21 lines
380 B
ApacheConf
21 lines
380 B
ApacheConf
![]() |
#unix -- do not change or move
|
||
|
<IfModule mod_authz_host>
|
||
|
Require all denied
|
||
|
</IfModule>
|
||
|
<IfModule !mod_authz_host>
|
||
|
Order allow,deny
|
||
|
Deny from all
|
||
|
</IfModule>
|
||
|
|
||
|
<FilesMatch "\.(gif|jpe?g|png)$">
|
||
|
<IfModule mod_authz_host>
|
||
|
Require all granted
|
||
|
</IfModule>
|
||
|
<IfModule !mod_authz_host>
|
||
|
Order allow,deny
|
||
|
Allow from all
|
||
|
</IfModule>
|
||
|
</FilesMatch>
|
||
|
|
||
|
Options -Indexes
|