summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorErik Michelson2019-09-09 01:48:22 +0200
committerErik Michelson2019-09-09 01:48:22 +0200
commitefe246f1837ed926a138f2ab527c00b4287fc2bc (patch)
tree18158238df2b1731aad6c1706fee7d81850f2fec /docs
parent5a359ab64819fedf74796407592415b814a876a5 (diff)
Extended login methods section
Signed-off-by: Erik Michelson <erik@liltv.de>
Diffstat (limited to 'docs')
-rw-r--r--docs/configuration-config-file.md45
1 files changed, 43 insertions, 2 deletions
diff --git a/docs/configuration-config-file.md b/docs/configuration-config-file.md
index eacb26ac..6c402188 100644
--- a/docs/configuration-config-file.md
+++ b/docs/configuration-config-file.md
@@ -99,8 +99,6 @@ these are rarely used for various reasons.
## Login methods
-Most of these have never been documented for the config.json, feel free to expand these
-
### Email (local account)
| variables | example values | description |
@@ -109,12 +107,47 @@ Most of these have never been documented for the config.json, feel free to expan
| `allowEmailRegister` | `true` or `false` | Set to allow registration of new accounts using an email address. If set to `false`, you can still create accounts using the command line - see `bin/manage_users` for details. This setting has no effect if `email` is `false`. The default for `allowEmailRegister` is `true`. |
### Dropbox Login
+
+| variables | example values | description |
+| --------- | ------ | ----------- |
+| `dropbox` | `{clientID: ..., clientSecret: ...}` | An object containing the client ID and the client secret obtained by the [Dropbox developer tools](https://www.dropbox.com/developers/apps) |
+
### Facebook Login
+
+| variables | example values | description |
+| --------- | ------ | ----------- |
+| `facebook` | `{clientID: ..., clientSecret: ...}` | An object containing the client ID and the client secret obtained by the [Facebook app console](https://developers.facebook.com/apps) |
+
### GitHub Login
+
+| variables | example values | description |
+| --------- | ------ | ----------- |
+| `github` | `{clientID: ..., clientSecret: ...}` | An object containing the client ID and the client secret obtained by the GitHub developer page. For more details have a look at the [GitHub auth guide](guides/auth/github.md). |
+
### GitLab Login
+
+| variables | example values | description |
+| --------- | ------ | ----------- |
+| `gitlab` | `{baseURL: ..., scope: ..., version: ..., clientID: ..., clientSecret: ...}` | An object containing your GitLab application data. Refer to the [GitLab guide](guides/auth/gitlab-self-hosted.md) for more details! |
+
### Google Login
+
+| variables | example values | description |
+| --------- | ------ | ----------- |
+| `google` | `{clientID: ..., clientSecret: ...}` | An object containing the client ID and the client secret obtained by the [Google API console](https://console.cloud.google.com/apis) |
+
### LDAP Login
+
+| variables | example values | description |
+| --------- | ------ | ----------- |
+| `ldap` | `{providerName: ..., url: ..., bindDn: ..., bindCredentials: ..., searchBase: ..., searchFilter: ..., searchAttributes: ..., usernameField: ..., useridField: ..., tlsca: ...}` | An object detailing the LDAP connection. Refer to the [LDAP-AD guide](guides/auth/ldap-AD.md) for more details! |
+
### Mattermost Login
+
+| variables | example values | description |
+| --------- | ------ | ----------- |
+| `mattermost` | `{baseURL: ..., clientID: ..., clientSecret: ...}` | An object containing the base URL of your Mattermost application data. Refer to the [Mattermost guide](guides/auth/mattermost-self-hosted.md) for more details! |
+
### OAuth2 Login
| variables | example values | description |
@@ -122,8 +155,16 @@ Most of these have never been documented for the config.json, feel free to expan
| `oauth2` | `{baseURL: ..., userProfileURL: ..., userProfileUsernameAttr: ..., userProfileDisplayNameAttr: ..., userProfileEmailAttr: ..., tokenURL: ..., authorizationURL: ..., clientID: ..., clientSecret: ...}` | An object detailing your OAuth2 provider. Refer to the [Mattermost](guides/auth/mattermost-self-hosted.md) or [Nextcloud](guides/auth/nextcloud.md) examples for more details!|
### SAML Login
+
+| variables | example values | description |
+| --------- | ------ | ----------- |
+| `saml` | `{idpSsoUrl: ..., idpCert: ..., issuer: ..., identifierFormat: ..., disableRequestedAuthnContext: ..., groupAttribute: ..., externalGroups: [], requiredGroups: [], attribute: {id: ..., username: ..., email: ...}}` | An object detailing your SAML provider. Refer to the [OneLogin](guides/auth/saml-onelogin.md) and [SAML](guides/auth/saml.md) guides for more details! |
+
### Twitter Login
+| variables | example values | description |
+| --------- | ------ | ----------- |
+| `twitter` | `{consumerKey: ..., consumerSecret: ...}` | An object containing the consumer key and secret obtained by the [Twitter developer tools](https://developer.twitter.com/apps). For more details have a look at the [Twitter auth guide](guides/auth/twitter.md) |
## Upload Storage