Back to Authelia

FileRise

docs/content/integration/openid-connect/clients/file-rise/index.md

4.39.192.7 KB
Original Source

Tested Versions

{{% oidc-common %}}

Assumptions

This example makes the following assumptions:

  • Application Root URL: https://filerise.{{< sitevar name="domain" nojs="example.com" >}}/
  • Authelia Root URL: https://{{< sitevar name="subdomain-authelia" nojs="auth" >}}.{{< sitevar name="domain" nojs="example.com" >}}/
  • Client ID: filerise
  • Client Secret: insecure_secret

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 FileRise which will operate with the application example:

yaml
identity_providers:
  oidc:
    ## The other portions of the mandatory OpenID Connect 1.0 configuration go here.
    ## See: https://www.authelia.com/c/oidc
    clients:
      - client_id: 'filerise'
        client_name: 'FileRise'
        public: true
        authorization_policy: 'two_factor'
        require_pkce: true
        pkce_challenge_method: 'S256'
        redirect_uris:
          - 'https://filerise.{{< sitevar name="domain" nojs="example.com" >}}/api/auth/auth.php?oidc=callback'
        scopes:
          - 'openid'
          - 'email'
          - 'profile'
        response_modes:
          - 'form_post'
        response_types:
          - 'code'
        grant_types:
          - 'authorization_code'
        access_token_signed_response_alg: 'none'
        userinfo_signed_response_alg: 'none'
        token_endpoint_auth_method: 'none'

Application

To configure FileRise there is one method, using the Web GUI.

Web GUI

To configure FileRise to utilize Authelia as an OpenID Connect 1.0 Provider, use the following instructions:

  1. Login to your FileRise administrator account.
  2. Select Admin Panel from the context menu revealed by clicking your profile icon.
  3. Select OIDC Configuration & TOTP.
  4. Enter the following values:
  • OIDC Provider URL: https://{{< sitevar name="subdomain-authelia" nojs="auth" >}}.{{< sitevar name="domain" nojs="example.com" >}}
  • OIDC Client ID: filerise
  • OIDC Client Secret: insecure_secret
  • OIDC Redirect URI: https://filerise.{{< sitevar name="domain" nojs="example.com" >}}/api/auth/auth.php?oidc=callback
  1. Click Save Settings.