@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at upstream/main 18 lines 580 B view raw
1<?php 2 3abstract class PhabricatorSite extends AphrontSite { 4 5 public function shouldRequireHTTPS() { 6 // If this is an intracluster request, it's okay for it to use HTTP even 7 // if the site otherwise requires HTTPS. It is common to terminate SSL at 8 // a load balancer and use plain HTTP from then on, and administrators are 9 // usually not concerned about attackers observing traffic within a 10 // datacenter. 11 if (PhabricatorEnv::isClusterRemoteAddress()) { 12 return false; 13 } 14 15 return PhabricatorEnv::getEnvConfig('security.require-https'); 16 } 17 18}