Is it possible to alter the web gui's port from 80, to say, 8008 ?
Ad Widget
Collapse
Web interface port, other than 80
Collapse
X
-
Of course we can edit apache's ports.conf: http://www.cyberciti.biz/faq/linux-a...ort-ipbinding/
But I want to disable port 80 only for Zabbix altogether. All other sites must keep listening on port 80. Anyone? -
You can add 8008 to the ports.conf and apache will listen on both ports.
Your virtualhost setup would look something like:
<VirtualHost *:80>
ServerName www.yourothersite.com:80
<VirtualHost *:8008>
ServerName zabbix.yourdomain.com:8008Comment
-
Marc,
create a configfile something like this
This should work, leave the ports.conf file alone and arrange it in your sites definitions. Make sure its last in the list to load for apacheCode:NameVirtualHost *:8008 Listen 8008 <VirtualHost *:8008> ServerName yourfqdnhere DocumentRoot <fullpathtodir> <Directory fullpathtodir > AllowOverride All Options +FollowSymLinks </Directory> ErrorLog /var/log/apache2/zbx-error.log CustomLog /var/log/apache2/zbx-access.log combined </VirtualHost>Comment
Comment