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.
![screenshot_2018-09-19_09-28-05](https://user-images.githubusercontent.com/4125496/45737730-eac21a80-bbee-11e8-86f6-a9fa0b6cd995.png)

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

Reply via email to