Changeset View
Changeset View
Standalone View
Standalone View
conf/default.conf.php
| Show First 20 Lines • Show All 553 Lines • ▼ Show 20 Lines | // -- Auth ------------------------------------------------------------------ // | ||||
| // Setting this to "1" will prevent a user from logging in on more than one | // Setting this to "1" will prevent a user from logging in on more than one | ||||
| // browser at the same time. | // browser at the same time. | ||||
| 'auth.sessions.web' => 5, | 'auth.sessions.web' => 5, | ||||
| // Maximum number of simultaneous Conduit sessions each user is permitted | // Maximum number of simultaneous Conduit sessions each user is permitted | ||||
| // to have. | // to have. | ||||
| 'auth.sessions.conduit' => 5, | 'auth.sessions.conduit' => 5, | ||||
| // Set this true to enable the Settings -> SSH Public Keys panel, which will | |||||
| // allow users to associated SSH public keys with their accounts. This is only | |||||
| // really useful if you're setting up services over SSH and want to use | |||||
| // Phabricator for authentication; in most situations you can leave this | |||||
| // disabled. | |||||
| 'auth.sshkeys.enabled' => false, | |||||
| // If true, email addresses must be verified (by clicking a link in an | // If true, email addresses must be verified (by clicking a link in an | ||||
| // email) before a user can login. By default, verification is optional | // email) before a user can login. By default, verification is optional | ||||
| // unless 'auth.email-domains' is nonempty (see below). | // unless 'auth.email-domains' is nonempty (see below). | ||||
| 'auth.require-email-verification' => false, | 'auth.require-email-verification' => false, | ||||
| // You can restrict allowed email addresses to certain domains (like | // You can restrict allowed email addresses to certain domains (like | ||||
| // "yourcompany.com") by setting a list of allowed domains here. Users will | // "yourcompany.com") by setting a list of allowed domains here. Users will | ||||
| // only be allowed to register using email addresses at one of the domains, | // only be allowed to register using email addresses at one of the domains, | ||||
| ▲ Show 20 Lines • Show All 585 Lines • Show Last 20 Lines | |||||