mirror of
https://github.com/zabbix/zabbix-docker.git
synced 2024-12-02 04:33:09 +01:00
51 lines
1.0 KiB
ApacheConf
51 lines
1.0 KiB
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
|
|
Order allow,deny
|
|
Allow from all
|
|
</Directory>
|
|
|
|
<Directory "/usr/share/zabbix/conf">
|
|
Order deny,allow
|
|
Deny from all
|
|
<files *.php>
|
|
Order deny,allow
|
|
Deny from all
|
|
</files>
|
|
</Directory>
|
|
|
|
<Directory "/usr/share/zabbix/app">
|
|
Order deny,allow
|
|
Deny from all
|
|
<files *.php>
|
|
Order deny,allow
|
|
Deny from all
|
|
</files>
|
|
</Directory>
|
|
|
|
<Directory "/usr/share/zabbix/include">
|
|
Order deny,allow
|
|
Deny from all
|
|
<files *.php>
|
|
Order deny,allow
|
|
Deny from all
|
|
</files>
|
|
</Directory>
|
|
|
|
<Directory "/usr/share/zabbix/local">
|
|
Order deny,allow
|
|
Deny from all
|
|
<files *.php>
|
|
Order deny,allow
|
|
Deny from all
|
|
</files>
|
|
</Directory>
|