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
2023-02-02 01:30:06 +00:00
{{% oidc-common %}}
2022-10-20 04:42:22 +00:00
2022-10-20 04:27:09 +00:00
### Assumptions
2022-06-15 07:51:47 +00:00
This example makes the following assumptions:
* __Application Root URL:__ `https://seafile.example.com`
* __Authelia Root URL:__ `https://auth.example.com`
* __Client ID:__ `seafile`
2023-02-02 01:30:06 +00:00
* __Client Secret:__ `insecure_secret`
2022-06-15 07:51:47 +00:00
## Configuration
### Application
2023-01-25 23:59:18 +00:00
To configure [Seafile] to utilize Authelia as an [OpenID Connect 1.0] Provider:
2022-06-15 07:51:47 +00:00
2022-10-20 04:27:09 +00:00
1. [Seafile] may require some dependencies such as `requests_oauthlib` to be manually installed.
2022-10-18 10:27:38 +00:00
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"
2023-02-02 01:30:06 +00:00
OAUTH_CLIENT_SECRET = "insecure_secret"
2022-06-15 07:51:47 +00:00
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
2023-04-02 03:12:01 +00:00
identity_providers:
oidc:
## The other portions of the mandatory OpenID Connect 1.0 configuration go here.
## See: https://www.authelia.com/c/oidc
clients:
2023-05-07 06:39:17 +00:00
- id: 'seafile'
description: 'Seafile'
2023-04-02 03:12:01 +00:00
secret: '$pbkdf2-sha512$310000$c8p78n7pUMln0jzvd4aK4Q$JNRBzwAo0ek5qKn50cFzzvE9RXV88h1wJn5KGiHrD0YKtZaR/nCb2CJPOsKaPK0hjf.9yHxzQGZziziccp6Yng' # The digest of 'insecure_secret'.
public: false
2023-05-07 06:39:17 +00:00
authorization_policy: 'two_factor'
2023-04-02 03:12:01 +00:00
redirect_uris:
2023-05-07 06:39:17 +00:00
- 'https://seafile.example.com/oauth/callback/'
2023-04-02 03:12:01 +00:00
scopes:
2023-05-07 06:39:17 +00:00
- 'openid'
- 'profile'
- 'email'
userinfo_signing_algorithm: 'none'
2022-06-15 07:51:47 +00:00
```
## See Also
* [Seafile OAuth Authentication Documentation ](https://manual.seafile.com/deploy/oauth/ )
[Authelia]: https://www.authelia.com
[Seafile]: https://www.seafile.com/
2023-01-25 23:59:18 +00:00
[OpenID Connect 1.0]: ../../openid-connect/introduction.md