This assumes you have configured your OS with Apache, mod_proxy, etc.
I'm piggy backing on message
http://groups.google.com/group/openmeetings-user/browse_thread/thread/d0c3bd148fc1bdae/9d52a6237ba1ccbe?lnk=gst&q=proxy+pass+8088+5080#9d52a6237ba1ccbe
which had it working 95%.
Apache config (assumes you are running red5 as non-privileged user
using default ports):
Set up openmeetings and rtmpt CNAMEs in DNS.that point to Apache proxy
server.
Add hostname and IP in OS hosts table that point to actual
openmeetings server on Apache Proxy.
Relevant section of openmeetings virtual host:
<VirtualHost *:80>
ServerAdmin [email protected]
ServerName openmeetings.mydomain.com
ProxyPass / http://openmeetings.mydomain.com:5080/
ProxyPassReverse / http://openmeetings.mydomain.com:5080/
...
</VirtualHost>
Relevant section of openmeetings-rtmpt virtual host:
<VirtualHost *:80>
ServerAdmin [email protected]
ServerName rtmpt.mydomain.com
ProxyPass /openmeetings
http://openmeetings.mydomain.com:5080/openmeetings
ProxyPassReverse /openmeetings
http://openmeetings.mydomain.com:5080/openmeetings
ProxyPass / http://openmeetings.mydomain.com:8088/
ProxyPassReverse / http://openmeetings.mydomain.com:8088/
...
</VirtualHost>
OpenMeetings config:
red5/webapps/openmeetings/config.xml:
<rtmphostlocal>rtmpt.mydomain.com</rtmphostlocal>
<rtmpTunnelport>80</rtmpTunnelport>
<red5httpport>80</red5httpport>
--
You received this message because you are subscribed to the Google Groups
"OpenMeetings User" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/openmeetings-user?hl=en.