How to Do Darwin Streaming on Port 80 while still having a web server

This is a short example of how to run Darwin Streaming Server on port 80 (for clients behind firewalls), and still run a webserver on the same server.


  1. Download Streaming Server
  2. Install Streaming Server
  3. Create a virtual interface in /etc/network/interfaces under debian linux
  4. For example add:
    auto eth0:1 
      iface eth0:1 inet static
      address 10.10.10.2
      broadcast 10.10.10.255
      netmask 255.255.255.0
  5. Edit /etc/apache/httpd.conf

    Add "BindAddress 10.10.10.1"

  6. Restart apache:
    #/etc/init.d/apache restart 
    
  7. Edit /etc/streaming/streamingserver.xml
  8. On the line that contains <PREF NAME="bind_ip_addr"> 0 to 10.10.10.2

  9. Restart interfaces, apache, or darwin server as necessary

-- TerrySchmidt


CategoryGeek

DarwinStreamingPort80 (last edited 2002-04-24 23:50:27 by AdamShand)