# prevent users from loading configs and database

<IfModule !mod_authz_core.c>
	Order deny,allow
	Deny from all
</IfModule>
<IfModule mod_authz_core.c>
    Require all denied
</IfModule>

<FilesMatch "\.(htm|html|ico|pdf|flv|jpg|jpeg|svg|mp3|mpg|mp4|mov|wav|wmv|png|gif|swf|css|js)$">
	<IfModule !mod_authz_core.c>
		Allow from All
	</IfModule>
	<IfModule mod_authz_core.c>
		Require all granted
	</IfModule>
</FilesMatch>