mirror of https://github.com/authelia/authelia.git
3.3 KiB
3.3 KiB
title | description | summary | date | draft | images | weight | toc | support | seo | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Odoo | Integrating Odoo with the Authelia OpenID Connect 1.0 Provider. | 2024-03-31T14:46:10+11:00 | false | 620 | true |
|
|
Tested Versions
{{% oidc-common %}}
Assumptions
This example makes the following assumptions:
- Application Root URL:
https://odoo.{{< sitevar name="domain" nojs="example.com" >}}/
- Authelia Root URL:
https://{{< sitevar name="subdomain-authelia" nojs="auth" >}}.{{< sitevar name="domain" nojs="example.com" >}}/
- Client ID:
odoo
Some of the values presented in this guide can automatically be replaced with documentation variables.
{{< sitevar-preferences >}}
Configuration
Authelia
The following YAML configuration is an example Authelia client configuration for use with Odoo which will operate with the application example:
identity_providers:
oidc:
clients:
- client_id: 'odoo'
client_name: 'Odoo'
public: true
authorization_policy: 'two_factor'
redirect_uris:
- 'https://odoo.{{< sitevar name="domain" nojs="example.com" >}}/auth_oauth/signin'
scopes:
- 'openid'
- 'email'
- 'profile'
response_types:
- 'token'
userinfo_signed_response_alg: 'none'
token_endpoint_auth_method: 'none'
Application
To configure Odoo to utilize Authelia as an OpenID Connect 1.0 Provider:
- Enable OAuth in General Settings/Integrations, save and reload.
- Create a new OAuth Provider in General Settings/Integrations/OAuth Providers, with the following settings:
- Provider name:
Authelia
- Client ID:
odoo
- Allowed: checked
- Login button label:
Authelia
- Authorization URL:
https://{{< sitevar name="subdomain-authelia" nojs="auth" >}}.{{< sitevar name="domain" nojs="example.com" >}}/api/oidc/authorization
- Scope: openid profile email
- UserInfo URL:
https://{{< sitevar name="subdomain-authelia" nojs="auth" >}}.{{< sitevar name="domain" nojs="example.com" >}}/api/oidc/userinfo
- Data Endpoint:
https://{{< sitevar name="subdomain-authelia" nojs="auth" >}}.{{< sitevar name="domain" nojs="example.com" >}}/jwks.json
- If you want your Authelia user to have a guest access on Odoo, you need to enable it in General Settings/Permissions/Customer Account/Free sign up
- If you want to allow an already existing user in Odoo to use its Authelia login:
- Ask the user to reset its password
- When Odoo prompt for the new password, select the "Connect with Authelia" button