Changeset View
Changeset View
Standalone View
Standalone View
conf/default.conf.php
| Show First 20 Lines • Show All 624 Lines • ▼ Show 20 Lines | // -- Misc ------------------------------------------------------------------ // | ||||
| // Show stack traces when unhandled exceptions occur, force reloading of | // Show stack traces when unhandled exceptions occur, force reloading of | ||||
| // static resources (skipping the cache), show an error callout if a page | // static resources (skipping the cache), show an error callout if a page | ||||
| // generated PHP errors, warnings, or notices, force disk reads when | // generated PHP errors, warnings, or notices, force disk reads when | ||||
| // reloading, and generally make development easier. This option should not | // reloading, and generally make development easier. This option should not | ||||
| // be enabled in production. | // be enabled in production. | ||||
| 'phabricator.developer-mode' => false, | 'phabricator.developer-mode' => false, | ||||
| // 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 | |||||
| // security issues like javascript:// URIs. | |||||
| 'uri.allowed-protocols' => array( | |||||
| 'http' => true, | |||||
| 'https' => true, | |||||
| ), | |||||
| // 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 | |||||