-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
website/integrations: owncloud: document #12540
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 32 commits
2b71864
099bb5f
572e0f7
3aa1b81
e1aab28
d505943
44c742d
3556d80
5f499c6
05c844b
b1d4165
e2a6949
0c68de8
1b35384
6ce7c3f
fbb9c6e
6e2ca34
ee13e9a
695f019
c6ec1a1
2c94ed5
20a2121
5a91414
f2f5be3
0286c92
23e4e47
8dfda6b
d03cd55
6813609
2749ebe
1d86650
06ce640
d90a9e8
5d870c7
78a75a4
20b655e
322d796
17b429a
a5cb14a
1668aea
101d75d
1055f08
abd95ed
b1f60e3
7f9f8cc
7b53ce4
036259c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,210 @@ | ||
| --- | ||
| title: Integrate with ownCloud | ||
| sidebar_label: ownCloud | ||
| --- | ||
|
|
||
| <span class="badge badge--secondary">Support level: Community</span> | ||
|
|
||
| ## What is ownCloud | ||
|
|
||
| > ownCloud is a free and open-source software project for content collaboration and sharing and syncing of files. | ||
| > | ||
| > -- https://owncloud.com | ||
|
|
||
| :::note | ||
| This guide focuses on ownCloud installations that are deployed using Docker. If you deployed ownCloud using a different mechanism, there might be some differences in the process. | ||
| ::: | ||
|
|
||
| ## Preparation | ||
|
|
||
| The following placeholders are used in this guide: | ||
|
|
||
| - `owncloud.company` is the FQDN of the ownCloud installation. | ||
| - `authentik.company` is the FQDN of the authentik installation. | ||
|
|
||
| :::info | ||
| This guide focuses on setting up ownCloud using the [official OIDC plugin](https://github.com/owncloud/openidconnect). Advanced configuration details can be found in the [ownCloud admin manual](https://doc.owncloud.com/server/latest/admin_manual/configuration/user/oidc/oidc.html). | ||
dominic-r marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| ::: | ||
|
|
||
| ## authentik configuration | ||
|
|
||
| To support all ownCloud applications, multiple application/provider pairs are required—one each for the Web UI, Desktop application, Android application, and iOS application. | ||
|
|
||
| The configuration for each application is nearly identical, except for the **Client ID**, **Client Secret**, and the **Redirect URI**, which are [predefined](https://doc.owncloud.com/server/latest/admin_manual/configuration/user/oidc/oidc.html#client-ids-secrets-and-redirect-uris) by ownCloud for the Desktop, Android, and iOS applications. | ||
dominic-r marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| ### Create applications/providers | ||
|
|
||
| Follow these steps to create the required application/provider pairs. You will need to repeat the process four times: once for the Desktop application, once for the Web UI, once for the Android application, and once for the iOS application. | ||
dominic-r marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| 1. In the Admin interface, navigate to **Applications** > **Applications**. | ||
| 2. Use the new application wizard to create the application and provider, with the following settings: | ||
dominic-r marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| - **Application**: Provide a descriptive name (e.g., `owncloud`, `owncloud-desktop`, `owncloud-android`, `owncloud-ios`), an optional group for the type of application, the policy engine mode, and optional UI settings. | ||
| - **Choose a Provider type**: Select **OAuth2/OpenID Provider** as the provider type. | ||
| - **Configure the Provider**: Provide a name (the default name will suffice for most users), the authorization flow to use for this provider, and the following required configurations. The settings for each of the four application/provider pairs are shown below: | ||
|
|
||
| - **Protocol settings:** | ||
| **Web UI:** | ||
dominic-r marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| - **Signing Key**: Select any available signing key. | ||
| - **Client ID**: Use the value generated by authentik. | ||
| - **Client Secret**: Use the value generated by authentik. | ||
| - **Redirect URIs**: | ||
| - Strict: `https://owncloud.company/apps/openidconnect/redirect` | ||
|
|
||
| **Desktop Application** | ||
|
|
||
| - **Signing Key**: Select any available signing key. | ||
| - **Client ID**: Use the predefined value found in the [ownCloud admin manual](https://doc.owncloud.com/server/latest/admin_manual/configuration/user/oidc/oidc.html#client-id). | ||
| - **Client Secret**: Use the predefined value found in the [ownCloud admin manual](https://doc.owncloud.com/server/latest/admin_manual/configuration/user/oidc/oidc.html#client-secret). | ||
| - **Redirect URIs**: | ||
| - Regex: `http://localhost:\d+` | ||
| - Regex: `http://127.0.0.1:\d+` | ||
|
|
||
| **Android Application** | ||
|
|
||
| - **Signing Key**: Select any available signing key. | ||
| - **Client ID**: Use the predefined value found in the [ownCloud admin manual](https://doc.owncloud.com/server/latest/admin_manual/configuration/user/oidc/oidc.html#client-id). | ||
| - **Client Secret**: Use the predefined value found in the [ownCloud admin manual](https://doc.owncloud.com/server/latest/admin_manual/configuration/user/oidc/oidc.html#client-secret). | ||
| - **Redirect URI**: | ||
| - Strict: `oc://android.owncloud.com` | ||
|
|
||
| **iOS Application** | ||
|
|
||
| - **Signing Key**: Select any available signing key. | ||
| - **Client ID**: Use the predefined value found in the [ownCloud admin manual](https://doc.owncloud.com/server/latest/admin_manual/configuration/user/oidc/oidc.html#client-id). | ||
| - **Client Secret**: Use the predefined value found in the [ownCloud admin manual](https://doc.owncloud.com/server/latest/admin_manual/configuration/user/oidc/oidc.html#client-secret). | ||
| - **Redirect URI**: | ||
| - Strict: `oc://ios.owncloud.com` | ||
|
|
||
| - **Advanced protocol settings:** | ||
| - **Scopes**: Select the following scopes for each of the four application/provider pairs: `email`, `offline_access`, `openid`, `profile`. | ||
|
|
||
| - **Configure Bindings** (optional): To manage the listing and access to applications on a user's **My applications** page, you can optionally create a [binding](https://docs.goauthentik.io/docs/add-secure-apps/flows-stages/bindings/) between the application and a specific policy, group, or user. Keep in mind that if you do not specify any bindings, all users will have access to the application. For more information about user access, refer to our documentation about [authorization](https://docs.goauthentik.io/docs/add-secure-apps/applications/manage_apps#policy-driven-authorization) and [hiding an application](https://docs.goauthentik.io/docs/add-secure-apps/applications/manage_apps#hide-applications). | ||
|
|
||
| ### Service discovery | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is there a more descriptive title? Also... can we specify that it is is the reverse proxy is configured within authentik? Should that be one of the regular steps in the "authentik configuration" section?
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No, the reverse-proxy is not within authentik or the service. I can rename the title if you want but it should have it's own section IMO. Tho, it's technically the config to make it work with the service. As you wish
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. One can configure a reverse proxy within authentik (@BeryJu ??), but if for sure this one is not configured there, then let's leave as is. |
||
|
|
||
| To allow ownCloud applications to log in via OIDC, your reverse proxy must be configured to rewrite `https://owncloud.company/.well-known/openid-configuration` to `https://owncloud.company/index.php/apps/openidconnect/config`. | ||
|
|
||
| Refer to the [ownCloud Admin Manual](https://doc.owncloud.com/server/latest/admin_manual/configuration/user/oidc/oidc.html#set-up-service-discovery) for an example configuration using [Apache HTTPD](https://httpd.apache.org/). | ||
|
|
||
| For other reverse proxies, consult the provider-specific documentation for guidance on implementing this rewrite rule. | ||
|
|
||
| ## ownCloud Configuration | ||
|
|
||
| To enable OIDC functionality in ownCloud, follow these steps: | ||
|
|
||
| 1. **Navigate to the Market**: | ||
|
||
|
|
||
| - Access the Market by visiting: | ||
| `https://owncloud.company/apps/market/#/` | ||
| or by clicking the **Hamburger Menu** in the top-left corner of any page in your ownCloud deployment and selecting **Market**. | ||
| - Search for and enable the **OIDC plugin**. | ||
|
|
||
| 2. **OIDC Plugin Configuration**: | ||
| The OIDC plugin cannot be configured via the ownCloud UI. Configuration must be performed either: | ||
|
|
||
| - Through the `config.php` file, or | ||
| - By storing the configuration in the ownCloud database. | ||
|
|
||
dominic-r marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| The location of the `config.php` file depends on your deployment method. Consult the setup guide for your chosen deployment method to identify the file’s location within your installation. | ||
|
|
||
| :::note | ||
dominic-r marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| Instructions for configuring the OIDC plugin using the ownCloud database can be found in the OIDC plugin's [README.md file](https://github.com/owncloud/openidconnect?tab=readme-ov-file#settings-in-database). Both methods produce identical configurations, differing only in whether the settings are stored in a `php` file or in the database (via an `occ` command). | ||
| ::: | ||
|
|
||
| 3. **Create the `oidc.config.php` File**: | ||
|
|
||
| - Place a file named `oidc.config.php` in the same directory as the existing `config.php` file in your ownCloud installation. | ||
| - Files named with this pattern are treated as "override" files, allowing ownCloud to override matching configuration keys in the `config.php` file. | ||
|
|
||
| The location of this file depends on your Docker configuration. By default, the file resides in `/mnt/data/config` within the container. This location is exposed via the `files` volume in the [official setup guide](https://doc.owncloud.com/server/next/admin_manual/installation/docker/#docker-compose). | ||
|
|
||
| 4. **Minimal Contents of `oidc.config.php`**: | ||
| Add the necessary configuration settings to this file. Ensure it includes at least the minimal requirements for your setup: | ||
|
|
||
| :::warning | ||
| You can configure ownCloud to use either the `sub` or `preferred_username` as the UID field under `search-attribute`. When using `preferred_username` as the user identifier, ensure that the [**Allow users to change username** setting](https://docs.goauthentik.io/docs/sys-mgmt/settings#allow-users-to-change-username) is disabled to prevent authentication issues. The `sub` option uses a unique, stable identifier for the user, while `preferred_username` uses the username configured in authentik. | ||
| ::: | ||
|
|
||
| ```php | ||
| <?php | ||
| $CONFIG = [ | ||
| 'http.cookie.samesite' => 'None', | ||
| 'openid-connect' => [ | ||
| 'provider-url' => 'https://authentik.company/application/o/owncloud/', | ||
| 'client-id' => '<Client ID from authentik>', | ||
| 'client-secret' => '<Client secret from authentik', | ||
| 'loginButtonName' => 'Log in with authentik', | ||
| 'mode' => 'userid', | ||
| 'search-attribute' => 'preferred_username', | ||
| ], | ||
| ], | ||
| ]; | ||
| ``` | ||
|
|
||
| To enable automatic provisioning of new users, you can augment the `openid-connect` configuration in your `oidc.config.php` file with the following settings: | ||
|
|
||
| ```php | ||
| <?php | ||
| $CONFIG = [ | ||
| 'http.cookie.samesite' => 'None', | ||
| 'openid-connect' => [ | ||
| 'provider-url' => 'https://authentik.company/application/o/owncloud/', | ||
| 'client-id' => '<Client ID from authentik>', | ||
| 'client-secret' => '<Client secret from authentik>', | ||
| 'loginButtonName' => 'Log in with authentik', | ||
| 'mode' => 'userid', | ||
| 'search-attribute' => 'preferred_username', | ||
| 'auto-provision' => [ | ||
| 'enabled' => true, | ||
| 'email-claim' => 'email', | ||
| 'display-name-claim' => 'given_name', | ||
| 'update' => [ | ||
| 'enabled' => true, | ||
| ], | ||
| ], | ||
| ], | ||
| ]; | ||
| ``` | ||
|
|
||
| :::note | ||
| The configuration above will result in new ownCloud users being assigned the same username as the authentik username. If you prefer to use the user's email address as the ownCloud username, you can remove the `mode` and `search-attribute` settings. | ||
|
|
||
| Note that using email as the username may cause mobile app interfaces to display usernames in an unusual format (e.g., `[email protected]@owncloud.company`). | ||
| ::: | ||
|
|
||
| In addition to the above settings, here are some additional options for configuring the OIDC integration in ownCloud: | ||
|
|
||
| ```php | ||
| <?php | ||
| $CONFIG = [ | ||
| 'token_auth_enforced' => true, // Forces OIDC authentication on all desktop, Android, and iOS clients, and disconnects existing sessions. | ||
| 'openid-connect' => [ | ||
| 'autoRedirectOnLoginPage' => true, // Enables automatic redirection to the authentik login page | ||
| ], | ||
| ]; | ||
| ``` | ||
|
|
||
| :::warning | ||
| Enabling the `autoRedirectOnLoginPage` setting may lock you out of the system if your OIDC setup is misconfigured. To regain access, you can disable this setting and restart ownCloud, which will restore the standard login page. | ||
| ::: | ||
|
|
||
| :::tip | ||
| For more information on other available configuration options, refer to the OIDC plugin's [README](https://github.com/owncloud/openidconnect?tab=readme-ov-file#settings-in-database). | ||
| ::: | ||
|
|
||
| ### You're done! | ||
|
|
||
| You have successfully configured OIDC authentication through authentik. Here's what you can expect next: | ||
|
|
||
| - **Login Behavior:** | ||
|
|
||
| - If the `autoRedirectOnLoginPage` option is **set to false**, navigating to `https://owncloud.company` will present the standard login page, which now includes an "Log in with authentik" button (or any custom text defined in the `loginButtonName` field). | ||
| - If the `autoRedirectOnLoginPage` option is **set to true**, users will be automatically redirected to the authentik login page when attempting to access `https://owncloud.company`. | ||
|
|
||
| - **ownCloud Applications:** | ||
| Any new connections through the ownCloud desktop, Android, or iOS applications will automatically use OIDC for authentication. | ||
|
|
||
| - **Force Re-authentication:** | ||
| To enforce re-authentication using OIDC for existing sessions, set the `token_auth_enforced` option to **true** in the `oidc.config.php` file (as detailed in the above section). This will prompt users to re-authenticate on their ownCloud clients. | ||
Uh oh!
There was an error while loading. Please reload this page.