Changeset View
Changeset View
Standalone View
Standalone View
conf/default.conf.php
| Show First 20 Lines • Show All 632 Lines • ▼ Show 20 Lines | // -- Misc ------------------------------------------------------------------ // | ||||
| // When users write comments which have URIs, they'll be automatically linked | // When users write comments which have URIs, they'll be automatically linked | ||||
| // if the protocol appears in this set. This whitelist is primarily to prevent | // if the protocol appears in this set. This whitelist is primarily to prevent | ||||
| // security issues like javascript:// URIs. | // security issues like javascript:// URIs. | ||||
| 'uri.allowed-protocols' => array( | 'uri.allowed-protocols' => array( | ||||
| 'http' => true, | 'http' => true, | ||||
| 'https' => true, | 'https' => true, | ||||
| ), | ), | ||||
| // By default, Phabricator includes some silly nonsense in the UI, such as | |||||
| // a submit button called "Clowncopterize" in Differential and a call to | |||||
| // "Leap Into Action". If you'd prefer more traditional UI strings like | |||||
| // "Submit", you can set this flag to disable most of the jokes and easter | |||||
| // eggs. | |||||
| 'phabricator.serious-business' => false, | |||||
| // Should Phabricator show beta applications on the homepage | // Should Phabricator show beta applications on the homepage | ||||
| 'phabricator.show-beta-applications' => false, | 'phabricator.show-beta-applications' => false, | ||||
| // Contains a list of uninstalled applications | // Contains a list of uninstalled applications | ||||
| 'phabricator.uninstalled-applications' => array(), | 'phabricator.uninstalled-applications' => array(), | ||||
| // Allowing non-members to interact with tasks over email. | // Allowing non-members to interact with tasks over email. | ||||
| 'phabricator.allow-email-users' => false, | 'phabricator.allow-email-users' => false, | ||||
| ▲ Show 20 Lines • Show All 442 Lines • Show Last 20 Lines | |||||