You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
700 B
35 lines
700 B
#
|
|
# Zabbix monitoring system php web frontend
|
|
#
|
|
|
|
Alias /zabbix /usr/share/zabbix
|
|
|
|
<Directory "/usr/share/zabbix">
|
|
Options FollowSymLinks
|
|
AllowOverride None
|
|
Require all granted
|
|
|
|
<IfModule dir_module>
|
|
DirectoryIndex index.php
|
|
</IfModule>
|
|
|
|
<FilesMatch \.(php|phar)$>
|
|
SetHandler "proxy:unix:/run/php-fpm/zabbix.sock|fcgi://localhost"
|
|
</FilesMatch>
|
|
</Directory>
|
|
|
|
<Directory "/usr/share/zabbix/conf">
|
|
Require all denied
|
|
</Directory>
|
|
|
|
<Directory "/usr/share/zabbix/app">
|
|
Require all denied
|
|
</Directory>
|
|
|
|
<Directory "/usr/share/zabbix/include">
|
|
Require all denied
|
|
</Directory>
|
|
|
|
<Directory "/usr/share/zabbix/local">
|
|
Require all denied
|
|
</Directory>
|
|
|