Hi,
Does anybody have a zabbix.conf they would care to share for opensuse? Basically I've copied the frontends/php into srv/www/htdocs/zabbix but I now need a conf file so that I can access the folder without a 403 error and that allows any browser to http://<ip address>/zabbix to get to the web page.
My best attempt thus far for a zabbix.conf looks like
<IfDefine ZABBIX>
Alias /zabbix/ "/srv/www/htdocs/zabbix/"
<Directory "/srv/www/htdocs/zabbix/">
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from 127.0.0.1
Allow from 192.168.0.0/16
Allow from 10.0.0.0/8
</Directory>
# <DirectoryMatch "/usr/share/zabbix/(conf|api|include)>
# Order Deny,Allow
# Deny from All
# <files *.php>
# Order Deny,Allow
# Deny from All
# </files>
# </DirectoryMatch>
</IfDefine>
But that's not doing it. I appreciate this is more of an apache question but I suspect that this is the place to ask because somebody is bound to have done this before.
Pete
Does anybody have a zabbix.conf they would care to share for opensuse? Basically I've copied the frontends/php into srv/www/htdocs/zabbix but I now need a conf file so that I can access the folder without a 403 error and that allows any browser to http://<ip address>/zabbix to get to the web page.
My best attempt thus far for a zabbix.conf looks like
<IfDefine ZABBIX>
Alias /zabbix/ "/srv/www/htdocs/zabbix/"
<Directory "/srv/www/htdocs/zabbix/">
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from 127.0.0.1
Allow from 192.168.0.0/16
Allow from 10.0.0.0/8
</Directory>
# <DirectoryMatch "/usr/share/zabbix/(conf|api|include)>
# Order Deny,Allow
# Deny from All
# <files *.php>
# Order Deny,Allow
# Deny from All
# </files>
# </DirectoryMatch>
</IfDefine>
But that's not doing it. I appreciate this is more of an apache question but I suspect that this is the place to ask because somebody is bound to have done this before.
Pete
Comment