Yes, apache uses port 80. I commented out Tomcat with SSL enabled and uncommented Tomcat without SSL enabled, added string with secure property to the part with ssl disabled, my apache vhost looks as follows:
ProxyRequests Off
### OpenMeetings ###
## Custom fragment
RewriteEngine On
RewriteCond %{HTTP:Connection} Upgrade [NC]
RewriteCond %{HTTP:Upgrade} websocket [NC]
RewriteRule /openmeetings/(.*) ws://localhost:5080/$1 [P,L]
ProxyPreserveHost On
<Location /openmeetings>
Require all granted
ProxyPass http://localhost:5080/openmeetings
ProxyPassReverse http://localhost:5080/openmeetings
RewriteEngine On
</Location>
As a result I can't login to openmeetings on local machine to
http://localhost:5080/openmeetings, but I can login to
https://externaladdress/openmeetings , and see only chat tab and nothing more
with error in mozilla debugger:
Content Security Policy: Couldn’t process unknown directive ‘’
Firefox can’t establish a connection to the server at
wss://externaladdress/openmeetings/wicket/websocket?pageId=2&
When I remove string with security property then I can login on local machine.

[ Full content available at: https://github.com/apache/openmeetings/issues/7 ]
This message was relayed via gitbox.apache.org for [email protected]
