Hello,
I want to change the url of zabbix:
http://monitor.mydomain.com/zabbix/ by http://monitor.mydomain.com.
and i've this message:
my apache configuration:
i suppose there is an variable to change, but don't find...
Thanks for help.
I want to change the url of zabbix:
http://monitor.mydomain.com/zabbix/ by http://monitor.mydomain.com.
and i've this message:
HTML Code:
Not Found The requested URL /zabbix/maps.php was not found on this server. Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny2 with Suhosin-Patch Server at 192.168.201.22 Port 80
PHP Code:
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/zabbix
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/zabbix>
AllowOverride FileInfo AuthConfig Limit Indexes
Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
<Limit GET POST OPTIONS PROPFIND>
Order allow,deny
Allow from all
</Limit>
<LimitExcept GET POST OPTIONS PROPFIND>
Order deny,allow
Deny from all
</LimitExcept>
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
Thanks for help.
Comment