mirror of
https://github.com/zabbix/zabbix-docker.git
synced 2024-11-25 17:23:48 +01:00
46 lines
967 B
ApacheConf
46 lines
967 B
ApacheConf
|
<VirtualHost *:80>
|
||
|
DocumentRoot /usr/share/zabbix/
|
||
|
ServerName zabbix
|
||
|
DirectoryIndex index.php
|
||
|
AddType application/x-httpd-php .php .php3 .php4 .php5 .phtml
|
||
|
AddType application/x-httpd-php-source .phps
|
||
|
</VirtualHost>
|
||
|
|
||
|
<Directory "/usr/share/zabbix">
|
||
|
Options FollowSymLinks
|
||
|
AllowOverride None
|
||
|
Require all granted
|
||
|
</Directory>
|
||
|
|
||
|
<Directory "/usr/share/zabbix/conf">
|
||
|
Require all denied
|
||
|
<files *.php>
|
||
|
Order deny,allow
|
||
|
Deny from all
|
||
|
</files>
|
||
|
</Directory>
|
||
|
|
||
|
<Directory "/usr/share/zabbix/app">
|
||
|
Require all denied
|
||
|
<files *.php>
|
||
|
Order deny,allow
|
||
|
Deny from all
|
||
|
</files>
|
||
|
</Directory>
|
||
|
|
||
|
<Directory "/usr/share/zabbix/include">
|
||
|
Require all denied
|
||
|
<files *.php>
|
||
|
Order deny,allow
|
||
|
Deny from all
|
||
|
</files>
|
||
|
</Directory>
|
||
|
|
||
|
<Directory "/usr/share/zabbix/local">
|
||
|
Require all denied
|
||
|
<files *.php>
|
||
|
Order deny,allow
|
||
|
Deny from all
|
||
|
</files>
|
||
|
</Directory>
|