mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-27 01:02:42 +01:00
Allow some protocols
Summary: I heard this HTTP thing is pretty good. Test Plan: @starruler did things which confirmed this is less bad than D4611. Reviewers: starruler Reviewed By: starruler CC: aran Differential Revision: https://secure.phabricator.com/D4612
This commit is contained in:
parent
62a27c1caa
commit
3440892d7b
1 changed files with 7 additions and 1 deletions
|
@ -108,7 +108,13 @@ final class PhabricatorSecurityConfigOptions
|
||||||
"unique to your install. In particular, you will want to do ".
|
"unique to your install. In particular, you will want to do ".
|
||||||
"this if you accidentally send a bunch of mail somewhere you ".
|
"this if you accidentally send a bunch of mail somewhere you ".
|
||||||
"shouldn't have, to invalidate all old reply-to addresses.")),
|
"shouldn't have, to invalidate all old reply-to addresses.")),
|
||||||
$this->newOption('uri.allowed-protocols', 'set', array())
|
$this->newOption(
|
||||||
|
'uri.allowed-protocols',
|
||||||
|
'set',
|
||||||
|
array(
|
||||||
|
'http' => true,
|
||||||
|
'https' => true,
|
||||||
|
))
|
||||||
->setSummary(
|
->setSummary(
|
||||||
pht("Determines which URI protocols are auto-linked."))
|
pht("Determines which URI protocols are auto-linked."))
|
||||||
->setDescription(
|
->setDescription(
|
||||||
|
|
Loading…
Reference in a new issue