Hi,
I wanna realize a networking scenario as follows.
client (http://:80) ----> apache + openfire server(http://:80 to http://:7070).
I configured httpd.conf so as to make the apache act as a proxy.
#httpd.conf
<VirtualHost *:80>
ServerName myserver.com
ProxyRequests Off
ProxyPass /myfolder http://myserver.com:7070/jitsi/apps/ofmeet
ProxyPassReverse /myfolder http://myserver.com:7070/jitsi/apps/ofmeet
ProxyTimeout 60
</VirtualHost>
Here ofmeet's config.js is
hosts: {
domain: 'mydomain.com',
muc: 'conference.mydomain.com',
bridge: 'jitsi-videobridge.mydomain.com'
}
When i access http://mydomain.com/myfolder/?r=test, web-browser shows the contents in ofmeet/index.php.
However, ofmeet never works.
http://myserver.com/7070/jitsi/apps/ofmeet/?r=test works well.
How can i make the proxying properly run?
Regards,