Phabricator:运行https,不加载任何图像。 Firefox报告阻止未加密的内容

时间:2015-08-14 01:59:28

标签: encryption https phabricator

Phabricator:在https上运行,不加载任何图像。 Firefox报告阻止未加密的内容。

如果我点击' https'旁边的那个小盾牌,并选择"暂时停用保护"用"选项"事情似乎工作正常。

我在phabricator.production-uri和phabricator.allowed-uris中添加了https://但没有运气。

3 个答案:

答案 0 :(得分:0)

安装TLS证书后,我遇到了同样的问题。 设置base-uri选项对我来说不起作用,生产或允许的uri选项也不起作用。

解决这个问题的方法是将 security.alternate-file-domain 参数设置为https网址,如下所述:https://secure.phabricator.com/book/phabricator/article/configuring_file_domain/

也许这不是最佳解决方案,但目前尚不清楚还有什么可做的。

我的设置:Bitnami Phabricator通过AWS预配置实例。

答案 1 :(得分:0)

除了设置 phabricator.base-uri 之外,您可能还需要更改 security.alternate-file-domain 以使用HTTPS。阅读https://secure.phabricator.com/book/phabricator/article/configuring_file_domain/以了解有关此设置的更多信息。

或者,您只需运行bin/config delete security.alternate-file-domain即可删除该设置。

答案 2 :(得分:0)

看起来现在要走的路是创建一个support/preamble.php,它只包含

<?php

$_SERVER['HTTPS'] = true;

如描述here