I have several boxes I port-forward to, I now have a zm box in that group.
I want to know how to get the zm box to respond to a non-standard port so I can assign it to the box. (ie http://ipaddrs:25555)
non standard port config
SOLVED: Changed ip port!
I had to poke around a bit
I should have mentioned I am using ZMLinuxOS (Nice set up btw)
The apache conf files are in non standard locations and once I found them all was clear.
In /etc/httpd/conf/httpd.conf simply set ServerName to the ip:port I want to use.
ie:
ServerName 192.168.111.128:7533
means I would enter the URL:
http://192.168.111.128:7533/zm
to access my zm server from another system on my lan and would use port 7533 to forward traffic across my router to it
PS
I also set the Listen directive in httpd.conf to 0.0.0.0:7533
this tells it to listen to any ip on port 7533 , so I can still use localhost or 127.0.0.1 from the server itself
I hope this helps keep anyone from getting lost like I did
I should have mentioned I am using ZMLinuxOS (Nice set up btw)
The apache conf files are in non standard locations and once I found them all was clear.
In /etc/httpd/conf/httpd.conf simply set ServerName to the ip:port I want to use.
ie:
ServerName 192.168.111.128:7533
means I would enter the URL:
http://192.168.111.128:7533/zm
to access my zm server from another system on my lan and would use port 7533 to forward traffic across my router to it
PS
I also set the Listen directive in httpd.conf to 0.0.0.0:7533
this tells it to listen to any ip on port 7533 , so I can still use localhost or 127.0.0.1 from the server itself
I hope this helps keep anyone from getting lost like I did