2022-06-15 07:51:47 +00:00
|
|
|
---
|
|
|
|
title: "Seafile"
|
2022-07-01 03:07:02 +00:00
|
|
|
description: "Integrating Seafile with the Authelia OpenID Connect Provider."
|
2022-06-15 07:51:47 +00:00
|
|
|
lead: ""
|
2022-06-28 05:27:14 +00:00
|
|
|
date: 2022-06-15T17:51:47+10:00
|
2022-06-15 07:51:47 +00:00
|
|
|
draft: false
|
|
|
|
images: []
|
|
|
|
menu:
|
|
|
|
integration:
|
|
|
|
parent: "openid-connect"
|
|
|
|
weight: 620
|
|
|
|
toc: true
|
|
|
|
community: true
|
|
|
|
---
|
|
|
|
|
|
|
|
## Tested Versions
|
|
|
|
|
|
|
|
* [Authelia]
|
2022-10-18 10:27:38 +00:00
|
|
|
* [v4.36.9](https://github.com/authelia/authelia/releases/tag/v4.36.9)
|
2022-06-15 07:51:47 +00:00
|
|
|
* [Seafile] Server
|
2022-10-18 10:27:38 +00:00
|
|
|
* [9.0.9](https://manual.seafile.com/changelog/server-changelog/#909-2022-09-22)
|
2022-06-15 07:51:47 +00:00
|
|
|
|
|
|
|
## Before You Begin
|
|
|
|
|
|
|
|
You are required to utilize a unique client id and a unique and random client secret for all [OpenID Connect] relying
|
|
|
|
parties. You should not use the client secret in this example, you should randomly generate one yourself. You may also
|
|
|
|
choose to utilize a different client id, it's completely up to you.
|
|
|
|
|
|
|
|
This example makes the following assumptions:
|
|
|
|
|
|
|
|
* __Application Root URL:__ `https://seafile.example.com`
|
|
|
|
* __Authelia Root URL:__ `https://auth.example.com`
|
|
|
|
* __Client ID:__ `seafile`
|
|
|
|
* __Client Secret:__ `seafile_client_secret`
|
|
|
|
|
|
|
|
## Configuration
|
|
|
|
|
|
|
|
### Application
|
|
|
|
|
|
|
|
To configure [Seafile] to utilize Authelia as an [OpenID Connect] Provider:
|
|
|
|
|
2022-10-18 10:27:38 +00:00
|
|
|
1. [Seafile] may require some dependencies such as `requests_oauthlib` to be manually installed.
|
|
|
|
See the [Seafile] documentation in the [see also](#see-also) section for more information.
|
|
|
|
|
|
|
|
2. Edit your [Seafile] `seahub_settings.py` configuration file and add configure the following:
|
2022-06-15 07:51:47 +00:00
|
|
|
|
|
|
|
```python
|
|
|
|
ENABLE_OAUTH = True
|
|
|
|
OAUTH_ENABLE_INSECURE_TRANSPORT = False
|
|
|
|
OAUTH_CLIENT_ID = "seafile"
|
|
|
|
OAUTH_CLIENT_SECRET = "seafile_client_secret"
|
|
|
|
OAUTH_REDIRECT_URL = 'https://seafile.example.com/oauth/callback/'
|
|
|
|
OAUTH_PROVIDER_DOMAIN = 'auth.example.com'
|
|
|
|
OAUTH_AUTHORIZATION_URL = 'https://auth.example.com/api/oidc/authorization'
|
|
|
|
OAUTH_TOKEN_URL = 'https://auth.example.com/api/oidc/token'
|
|
|
|
OAUTH_USER_INFO_URL = 'https://auth.example.com/api/oidc/userinfo'
|
|
|
|
OAUTH_SCOPE = [
|
2022-10-18 10:27:38 +00:00
|
|
|
"openid",
|
|
|
|
"profile",
|
|
|
|
"email",
|
2022-06-15 07:51:47 +00:00
|
|
|
]
|
|
|
|
OAUTH_ATTRIBUTE_MAP = {
|
2022-10-18 10:27:38 +00:00
|
|
|
"email": (True, "email"),
|
2022-06-15 07:51:47 +00:00
|
|
|
"name": (False, "name"),
|
2022-10-18 10:27:38 +00:00
|
|
|
"id": (False, "not used"),
|
2022-06-15 07:51:47 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### Authelia
|
|
|
|
|
|
|
|
The following YAML configuration is an example __Authelia__
|
|
|
|
[client configuration](../../../configuration/identity-providers/open-id-connect.md#clients) for use with [Seafile]
|
|
|
|
which will operate with the above example:
|
|
|
|
|
|
|
|
```yaml
|
|
|
|
- id: seafile
|
2022-08-26 03:26:58 +00:00
|
|
|
description: Seafile
|
2022-10-20 03:21:45 +00:00
|
|
|
secret: '$plaintext$seafile_client_secret'
|
2022-06-15 07:51:47 +00:00
|
|
|
public: false
|
|
|
|
authorization_policy: two_factor
|
2022-08-26 03:26:58 +00:00
|
|
|
redirect_uris:
|
|
|
|
- https://seafile.example.com/oauth/callback/
|
2022-06-15 07:51:47 +00:00
|
|
|
scopes:
|
|
|
|
- openid
|
|
|
|
- profile
|
|
|
|
- email
|
|
|
|
userinfo_signing_algorithm: none
|
|
|
|
```
|
|
|
|
|
|
|
|
## See Also
|
|
|
|
|
|
|
|
* [Seafile OAuth Authentication Documentation](https://manual.seafile.com/deploy/oauth/)
|
|
|
|
|
|
|
|
[Authelia]: https://www.authelia.com
|
|
|
|
[Seafile]: https://www.seafile.com/
|
|
|
|
[OpenID Connect]: ../../openid-connect/introduction.md
|