我正在使用 haproxy 来配置 ssl。在ha.cfg
我写
frontend https
bind *:443 ssl crt /etc/ssl/ssl.key/myserver.crt
acl hari path_beg /customers
acl css path_beg /assets
reqadd X-Forwarded-Proto:\ https
use_backend appointpress_app if hari
use_backend appointpress_app if css
default_backend appointpress_site
一切都很好,Firefox
但在Chrome
某些 JS 和 CSS 中没有被加载。在控制台中我收到错误:
[blocked] The page https://mydomain.com ran insecure content from http://mydomain.com/css/mycss.css
为什么我会收到这样的错误广告,我该如何解决这个问题。我在 haproxy 配置中遗漏了什么吗
提前致谢