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, | ||||
| ), | ), | ||||
| // Tokenizers are UI controls which let the user select other users, email | |||||
| // addresses, project names, etc., by typing the first few letters and having | |||||
| // the control autocomplete from a list. They can load their data in two ways: | |||||
| // either in a big chunk up front, or as the user types. By default, the data | |||||
| // is loaded in a big chunk. This is simpler and performs better for small | |||||
| // datasets. However, if you have a very large number of users or projects, | |||||
| // (in the ballpark of more than a thousand), loading all that data may become | |||||
| // slow enough that it's worthwhile to query on demand instead. This makes | |||||
| // the typeahead slightly less responsive but overall performance will be much | |||||
| // better if you have a ton of stuff. You can figure out which setting is | |||||
| // best for your install by changing this setting and then playing with a | |||||
| // user tokenizer (like the user selectors in Maniphest or Differential) and | |||||
| // seeing which setting loads faster and feels better. | |||||
| 'tokenizer.ondemand' => false, | |||||
| // By default, Phabricator includes some silly nonsense in the UI, such as | // By default, Phabricator includes some silly nonsense in the UI, such as | ||||
| // a submit button called "Clowncopterize" in Differential and a call to | // a submit button called "Clowncopterize" in Differential and a call to | ||||
| // "Leap Into Action". If you'd prefer more traditional UI strings like | // "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 | // "Submit", you can set this flag to disable most of the jokes and easter | ||||
| // eggs. | // eggs. | ||||
| 'phabricator.serious-business' => false, | 'phabricator.serious-business' => false, | ||||
| // Should Phabricator show beta applications on the homepage | // Should Phabricator show beta applications on the homepage | ||||
| ▲ Show 20 Lines • Show All 466 Lines • Show Last 20 Lines | |||||