安装 SSL 证书后实时聊天失败

安装 SSL 证书后实时聊天失败

在为 Odoo 安装 SSL 认证后,我们才能启动 HTTPS 协议并运行实时聊天,但失败了。所有其他应用程序似乎运行正常。

我们将其添加到我们的 Apache conf 中,但它似乎不适用于 Live Chat。

 # Comment to disable proxy
 ProxyRequests            Of
 ProxyPreserveHost     On 
 ProxyPass                   /longpolling/ http://localhost:8072/longpolling/ retry=0
 ProxyPassReverse      /longpolling/ http://localhost:8072/longpolling/ retry=0 
ProxyPass                   /                    http://localhost:8069/ retry=0 
ProxyPassReverse      / http://localhost:8069/ retry=0

答案1

事实证明,Chrome 浏览器阻止了实时聊天“窗口”,但它在 Opera 浏览器中运行良好,因此代理代码在 Apache 站点配置中运行良好。它甚至可以在 ISPconfig 的 site/apache/options 中重定向到之前安装的 Odoo 网站。Odoo 一直在 Odoo 设置中删除 httpS 中的 S,但这似乎并不重要。

相关内容