Welcome to mirror list, hosted at ThFree Co, Russian Federation.

.htaccess « app « ui - github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2509de4fcf4fa1f6390f94fa8ab267732bbcb88a (plain)
1
2
3
4
5
6
7
8
9
10
<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>