wactuary wrote: 
> The NewIP is present and accessible from other machines within my local
> network, however it serves pages and acts indentically to OldIP. 
> Because NewIP is bound to the same ports as OldIP, I couldn't run the
> reverse proxy from NewIP:80 to OldIP:9000.
> 
> 
An ip address is not bound to a port.
An application binds to an address/interface (or all) and port
Only on app per address/port combination, so you'll have to bind proxy
and webserver to one address each.
So for tinyproxy:

Code:
--------------------
    Port 80
  Listen 192.168.1.151
  Bind 192.168.1.151
--------------------

Similar for webserver
e.g. for lighttpd

Code:
--------------------
    server.bind = "192.168.1.150"
--------------------



'Various SW' (https://www.nexus0.net/pub/sw/): Web Interface | TUI |
Playlist Editor / Generator | Music Classification | Similar Music |
Announce | EventTrigger | Chiptunes | LMSlib2go | ...
'Various HowTos' (https://www.nexus0.net/pub/documents/LMS/): build a
self-contained LMS | Bluetooth/ALSA | Control LMS with any device | ...
------------------------------------------------------------------------
Roland0's Profile: http://forums.slimdevices.com/member.php?userid=56808
View this thread: http://forums.slimdevices.com/showthread.php?t=113639

_______________________________________________
unix mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/unix

Reply via email to