5.4 KiB
title | description | lead | date | draft | images | menu | weight | toc | aliases | ||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Secrets | Using the Secrets Configuration Method. | Authelia allows providing configuration via secrets method. This section describes how to implement this. | 2020-02-29T01:43:59+01:00 | false |
|
101400 | true |
|
Configuration of Authelia requires several secrets and passwords. Even if they can be set in the configuration file or standard environment variables, the recommended way to set secrets is to use this configuration method as described below.
See the security section for more information.
Layers
Important Note: While this method is the third layer of the layered configuration model as described by the introduction, this layer is special in as much as Authelia will not start if you define a secret as well as any other configuration method.
For example if you define jwt_secret
in the files method and/or AUTHELIA_JWT_SECRET
in the
environment method, as well as the AUTHELIA_JWT_SECRET_FILE
, this will cause the aforementioned error.
Security
This method is a slight improvement over the security of the other methods as it allows you to easily separate your configuration in a logically secure way.
Environment variables
A secret value can be loaded by Authelia when the configuration key ends with one of the following words: key
,
secret
, password
, or token
.
If you take the expected environment variable for the configuration option with the _FILE
suffix at the end. The value
of these environment variables must be the path of a file that is readable by the Authelia process, if they are not,
Authelia will fail to load. Authelia will automatically remove the newlines from the end of the files contents.
For instance the LDAP password can be defined in the configuration at the path authentication_backend.ldap.password, so this password could alternatively be set using the environment variable called AUTHELIA_AUTHENTICATION_BACKEND_LDAP_PASSWORD_FILE.
Here is the list of the environment variables which are considered secrets and can be defined. Please note that only secrets can be loaded into the configuration if they end with one of the suffixes above, you can set the value of any other configuration using the environment but instead of loading a file the value of the environment variable is used.
{{% table-config-keys secrets="true" %}}
Secrets in configuration file
If for some reason you decide on keeping the secrets in the configuration file, it is strongly recommended that you ensure the permissions of the configuration file are appropriately set so that other users or processes cannot access this file. Generally the UNIX permissions that are appropriate are 0600.
Secrets exposed in an environment variable
In all versions 4.30.0+ you can technically set secrets using the environment variables without the _FILE
suffix by
setting the value to the value you wish to set in configuration, however we strongly urge people not to use this option
and instead use the file-based secrets above.
Prior to implementing file secrets the only way you were able to define secret values was either via configuration or via environment variables in plain text.
See this article for reasons why setting them via the file counterparts is highly encouraged.
Examples
See the Docker Integration and Kubernetes Integration guides for examples of secrets.