7.5 KiB
title | description | lead | date | draft | images | menu | weight | toc | ||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Files | Using the YAML File Configuration Method. | Authelia can be configured via files. This section describes utilizing this method. | 2022-06-15T17:51:47+10:00 | false |
|
101200 | true |
Loading Behaviour and Discovery
There are several options which affect the loading of files:
Name | Argument | Environment Variable | Description |
---|---|---|---|
Files/Directories | --config , -c |
X_AUTHELIA_CONFIG |
A list of file or directory (non-recursive) paths to load configuration files from |
Filters | --config.experimental.filters |
X_AUTHELIA_CONFIG_FILTERS |
A list of filters applied to every file from the Files or Directories options |
Note: when specifying directories and files, the individual files specified must not be within any of the directories specified.
Configuration options can be discovered via either the Argument or Environment Variable, but not both at the same time. If both are specified the Argument takes precedence and the Environment Variable is ignored. It is generally recommended that if you're using a container that you use the Environment Variable as this will allow you to execute other commands from the context of the container more easily.
Formats
The only supported configuration file format is YAML.
It's important that you sufficiently validate your configuration file. While we produce console errors for users in many misconfiguration scenarios it's not perfect. Each file type has recommended methods for validation.
YAML
Authelia loads configuration.yml
as the configuration if you just run it. You can override this behaviour with the
following syntax:
authelia --config config.custom.yml
YAML Validation
We recommend utilizing VSCodium or VSCode, both with the YAML Extension by RedHat to validate this file type.
Multiple Configuration Files
You can have multiple configuration files which will be merged in the order specified. If duplicate keys are specified the last one to be specified is the one that takes precedence. Example:
authelia --config configuration.yml --config config-acl.yml --config config-other.yml
authelia --config configuration.yml,config-acl.yml,config-other.yml
Authelia's configuration files use the YAML format. A template with all possible options can be found at the root of the repository {{< github-link name="here" path="config.template.yml" >}}.
Important Note: You should not have configuration sections such as Access Control Rules or OpenID Connect clients configured in multiple files. If you wish to split these into their own files that is fine, but if you have two files that specify these sections and expect them to merge properly you are asking for trouble.
Container
By default, the container looks for a configuration file at /config/configuration.yml
.
Docker
This is an example of how to override the configuration files loaded in docker:
docker run -d --volume /path/to/config:/config authelia:authelia:latest authelia --config=/config/configuration.yaml --config=/config/configuration.acl.yaml
See the Docker Documentation for more information on the
docker run
command.
Docker Compose
An excerpt from a docker compose that allows you to specify multiple configuration files is as follows:
version: "3.8"
services:
authelia:
container_name: authelia
image: authelia/authelia:latest
command:
- "authelia"
- "--config=/config/configuration.yaml"
- "--config=/config/configuration.acl.yaml"
See the compose file reference for more information.
Kubernetes
An excerpt from a Kubernetes container that allows you to specify multiple configuration files is as follows:
kind: Deployment
apiVersion: apps/v1
metadata:
name: authelia
namespace: authelia
labels:
app.kubernetes.io/instance: authelia
app.kubernetes.io/name: authelia
spec:
replicas: 1
selector:
matchLabels:
app.kubernetes.io/instance: authelia
app.kubernetes.io/name: authelia
template:
metadata:
labels:
app.kubernetes.io/instance: authelia
app.kubernetes.io/name: authelia
spec:
enableServiceLinks: false
containers:
- name: authelia
image: docker.io/authelia/authelia:fix-missing-head-handler
command:
- authelia
args:
- '--config=/configuration.yaml'
- '--config=/configuration.acl.yaml'
See the Kubernetes workloads documentation or the Container API docs for more information.
File Filters
Experimental file filters exist which allow modification of all configuration files after reading them from the filesystem but before parsing their content. These filters are NOT covered by our Standard Versioning Policy. There WILL be a point where the name of the CLI argument or environment variable will change and usage of these will either break or just not work.
The filters are configured as a list of filter names by the --config.experimental.filters
CLI argument and
X_AUTHELIA_CONFIG_FILTERS
environment variable. We recommend using the environment variable as it ensures
commands executed from the container use the same filters. If both the CLI argument and environment variable are used
the environment variable is completely ignored.
Filters can either be used on their own, in combination, or not at all. The filters are processed in order as they are defined.
Examples:
authelia --config config.yml --config.experimental.filters expand-env,template
X_AUTHELIA_CONFIG_FILTERS=expand-env,template
Expand Environment Variable Filter
The name used to enable this filter is expand-env
.
This filter is the most common filter type used by many other applications. It is similar to using envsubst
where it
replaces a string like $EXAMPLE
or ${EXAMPLE}
with the value of the EXAMPLE
environment variable.
Go Template Filter
The name used to enable this filter is template
.
This filter uses the Go template engine to render the configuration files. It uses similar syntax to Jinja2 templates with different function names.
Comprehensive examples are beyond what we support and people wishing to use this should consult the official Go template engine documentation for syntax instructions. We also log the generated output at each filter stage as a base64 string when trace logging is enabled.
Functions
In addition to the standard builtin functions we support several other functions which should operate similar.
See the Templating Reference Guide for more information.