Apache and RTMPT

Some of you may find yourself in a situation where your Red5 server is on an internal network or otherwise un-reachable from the Internet. This set of rewrite rules will allow you to provide access to Red5 using an Apache web server (assuming the web server has access to the Internet).
The following rules assume that your Red5 server is running on a server with the IP address of 10.0.0.5, accepting HTTP connections on port 5080, and your application name is “myapp”.
RewriteRule ^/(open/.*)$ http://10.0.0.5:5080/myapp/$1 [P]
RewriteRule ^/(send/.*)$ http://10.0.0.5:5080/myapp/$1 [P]
RewriteRule ^/(idle/.*)$ http://10.0.0.5:5080/myapp/$1 [P]
RewriteRule ^/(close/.*)$ http://10.0.0.5:5080/myapp/$1 [P]
If you need more information on mod_rewrite, use this link.

Technorati 标签: ,

你可能感兴趣的:(apache)