mirror of
https://abf.rosa.ru/djam/zabbix20.git
synced 2025-04-18 10:34:10 +00:00
48 lines
895 B
Text
48 lines
895 B
Text
#
|
|
# Zabbix monitoring system php web frontend
|
|
#
|
|
|
|
Alias /zabbix /usr/share/zabbix
|
|
|
|
<Directory "/usr/share/zabbix">
|
|
Options FollowSymLinks
|
|
AllowOverride None
|
|
|
|
<IfModule mod_authz_core.c>
|
|
# Apache 2.4
|
|
Require all granted
|
|
</IfModule>
|
|
|
|
<IfModule !mod_authz_core.c>
|
|
# Apache 2.2
|
|
Order allow,deny
|
|
Allow from all
|
|
</IfModule>
|
|
|
|
</Directory>
|
|
|
|
<Directory ~ "^/usr/share/zabbix/(conf|api|include)/">
|
|
<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>
|
|
|
|
<files *.php>
|
|
<IfModule mod_authz_core.c>
|
|
# Apache 2.4
|
|
Require all denied
|
|
</IfModule>
|
|
|
|
<IfModule !mod_authz_core.c>
|
|
Order deny,allow
|
|
Deny from all
|
|
</IfModule>
|
|
|
|
</files>
|
|
</Directory>
|