On Monday 22 March 2004 23:39, Glenn Brown wrote:
> What you want to do is bind your webserver (apache or whatever) to a
> certain IP. Then open the /etc/streaming/streamingserver.xml file and check
> the following directive to the IP you want to bind too.
>
> <PREF NAME="bind_ip_addr" >0</PREF>
There's one thing though. It always tries to bind on localhost! Apply the
patch below, if you don't want that. For the admin server, you then need to
set the qtssIPAddress in $PREFIX/etc/streaming/streamingadminserver.conf
For a reference of the variables, see the %vital hash in
streamingadminserver.pl.
--
Met vriendelijke groeten / With kind regards,
WebMaster IDG.nl
Melvyn Sopacua
--- Server.tproj/QTSServer.cpp.orig Sat Aug 16 01:53:21 2003
+++ Server.tproj/QTSServer.cpp Wed Mar 24 21:06:26 2004
@@ -510,8 +510,13 @@
if ((numAddrs == 1) && (arrIndex == 0))
theIPAddrArray[arrIndex++] = INADDR_ANY;
- else
- theIPAddrArray[arrIndex++] = INADDR_LOOPBACK;
+ /*
+ * Do not bind on the loopback address by default.
+ * The assumption that the loopback address is always
+ * available is NOT true for FreeBSD jails.
+ *
+ * else
+ theIPAddrArray[arrIndex++] = INADDR_LOOPBACK; */
*outNumAddrsPtr = arrIndex;
}
[demime 0.98b removed an attachment of type application/pgp-signature]
_______________________________________________
streaming-server-users mailing list | email@hidden
Help/Unsubscribe/Archives: http://www.lists.apple.com/mailman/listinfo/streaming-server-users
Do not post admin requests to the list. They will be ignored.