Hi, following two postings that I have found on the mailing list, I have configured the webserver as follows:
/etc/apache2/sites-enabled/openmeetings -------------------------------------------------- <proxy> Order deny,allow Allow from all </proxy> <VirtualHost 10.0.50.5:80> ServerName video.xxxxx.de ProxyRequests Off ProxyPass / http://10.0.50.5:5080/ ProxyPassReverse / http://10.0.50.5:5080/ ErrorLog /var/log/apache2/om-error_log CustomLog /var/log/apache2/om-access_log combined HostnameLookups Off UseCanonicalName Off ServerSignature Off </VirtualHost> <VirtualHost 10.0.50.5:80> ServerName rtmpt.xxxx.de ProxyRequests Off ProxyPass /openmeetings http://10.0.50.5:5080/openmeetings ProxyPassReverse /openmeetings http://10.0.50.5:5080/openmeetings ErrorLog /var/log/apache2/om-rtmpt-error_log CustomLog /var/log/apache2/om-rtmpt-access_log combined HostnameLookups Off UseCanonicalName Off ServerSignature Off </VirtualHost> nslookup on video.xxxx.de and rtmpt.xxxx.de returns the external/official IP address. Entering http://video.xxxx.de/openmeetings returns the following error: Error missing [204] Error missing [556] Autoconnect Netconnection.connect.failed rtmpt://rtmpt.xxxx.de:80/openmeetings/hibernate Openmeetings is running, as netstat shows me: etstat -anp | grep 5080 tcp 0 0 0.0.0.0:5080 0.0.0.0:* LISTEN 27804/java tcp 1 0 10.0.50.5:43931 10.0.50.5:5080 CLOSE_WAIT 27045/apache2 tcp 1 0 10.0.50.5:43898 10.0.50.5:5080 CLOSE_WAIT 27043/apache2 tcp 1 0 10.0.50.5:41640 10.0.50.5:5080 CLOSE_WAIT 27043/apache2 Can anyone give me a hint, what the problem could be? Thanks and have a nice weekend, Ralf