Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions 14/umbraco-cms/reference/security/external-login-providers.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,33 @@

If auto-linking for public providers such as these was needed you would need to limit the access. This can be done by domain or other information provided in the claims using the options/callbacks specified in those provider's authentication options.

#### Is your project hosted on Umbraco Cloud?

Umbraco Cloud uses Umbraco ID for all authentication, including access to the Umbraco Backoffice.

If you are working with External Login Providers on a project hosted on Umbraco Cloud, extra configuration is required.

To disable the automatic redirect to Umbraco ID, follow these steps:

1. Open the `umbraco-cloud.json` file in your favorite code editor.
2. Locate the `Identity` section.
3. Add a new key: `AutoRedirectLogin`.
4. Set the value to `false`.

{% code title="umbraco-cloud.json" %}

Check warning on line 165 in 14/umbraco-cms/reference/security/external-login-providers.md

View workflow job for this annotation

GitHub Actions / runner / vale

[vale] reported by reviewdog 🐶 [UmbracoDocs.UmbracoTerms] We prefer 'Umbraco' over 'umbraco.' Raw Output: {"message": "[UmbracoDocs.UmbracoTerms] We prefer 'Umbraco' over 'umbraco.'", "location": {"path": "14/umbraco-cms/reference/security/external-login-providers.md", "range": {"start": {"line": 165, "column": 16}}}, "severity": "WARNING"}

```json
"Identity": {
"ClientId": "0297c0f6-83ad-4481-9ae2-07a3f5475333",
"ClientSecret": "Q5~T526ixOHlj47lg7Mu7_.zN1fK.7ua.9",
"EnvironmentId": "3105e6eb-4a1e-42dd-91e9-ffdbe3dd30a8",
"LocalLoginRedirectUri": "https://redirect.identity.umbraco.com",
"AutoRedirectLogin": false
}
```

{% endcode %}

### Auto-linking on Member authentication

Auto-linking on Member authentication only makes sense if you have a public member registration already or the provider does not have public account creation.
Expand Down
Loading