Hi, First of all, I'm using build #190+ from here: https://builds.apache.org/job/Openmeetings%203.1.x/ (apache-openmeetings-3.1.2-SNAPSHOT.tar.gz)
I have a clustered OpenMeetings installation (only one node is active for testing) in an intranet forcing the rtmpT connection (port 5080) closing port 1935 at iptables I need the connection pass through an apache proxy to protect OpenMeetings server. HTTP connection passes through the proxy without any problem but when I enter one room, connection goes direct between client and server (without passing through the proxy) I set the config.xml file like this: <rtmphostlocal>video1t</rtmphostlocal> <httphostlocal>video1h</httphostlocal> "video1t" and "video1h" point to the proxy's ip Proxy server configuration: <VirtualHost video1h:5080> ServerName video1h ServerAlias video1h ProxyPreserveHost On ProxyPass /openmeetings http://192.168.96.222:5080/openmeetings ProxyPassReverse /openmeetings http://192.168.96.222:5080/openmeetings </VirtualHost> <VirtualHost video1t:5080> ServerName video1t ServerAlias video1t ProxyPreserveHost On ProxyPass /openmeetings http://192.168.96.222:5080/openmeetings ProxyPassReverse /openmeetings http://192.168.96.222:5080/openmeetings </VirtualHost> "192.168.96.222" is the Openmeetings server's IP Am I missing something on configuration parameters? Someone did something like this? Is there a "howto" explaining the steps for configuring openmeetings through a proxy? Thanks in advance, Bruno. ________________________________ Antes de imprimir este mensaje, aseg?rese de que es necesario hacerlo. Aviso Legal: La informaci?n contenida en este mensaje y sus posibles documentos adjuntos es privada y confidencial y est? dirigida ?nicamente a su destinatario/a. Si usted no es el/la destinatario/a original de este mensaje, por favor elim?nelo. Cualquier uso de este mensaje o sus adjuntos sin autorizaci?n est? prohibida por ley. _____ Before printing this message, make sure it is really necessary. Legal Notice: The information contained in this message and its possible attachments are private and confidential and is intended solely for the addressee shown. If you are not the intended recipient of this message, please delete it. Any use of this message or its attachments without permission is prohibited by law.
