lib: load json strings in config env variables
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
97b814ab33
commit
cab564152d
|
@ -3,7 +3,8 @@ import os
|
||||||
from collections.abc import Mapping
|
from collections.abc import Mapping
|
||||||
from contextlib import contextmanager
|
from contextlib import contextmanager
|
||||||
from glob import glob
|
from glob import glob
|
||||||
from json import dumps
|
from json import dumps, loads
|
||||||
|
from json.decoder import JSONDecodeError
|
||||||
from time import time
|
from time import time
|
||||||
from typing import Any
|
from typing import Any
|
||||||
from urllib.parse import urlparse
|
from urllib.parse import urlparse
|
||||||
|
@ -123,6 +124,11 @@ class ConfigLoader:
|
||||||
if dot_part not in current_obj:
|
if dot_part not in current_obj:
|
||||||
current_obj[dot_part] = {}
|
current_obj[dot_part] = {}
|
||||||
current_obj = current_obj[dot_part]
|
current_obj = current_obj[dot_part]
|
||||||
|
# Check if the value is json, and try to load it
|
||||||
|
try:
|
||||||
|
value = loads(value)
|
||||||
|
except JSONDecodeError:
|
||||||
|
pass
|
||||||
current_obj[dot_parts[-1]] = value
|
current_obj[dot_parts[-1]] = value
|
||||||
idx += 1
|
idx += 1
|
||||||
if idx > 0:
|
if idx > 0:
|
||||||
|
|
|
@ -72,7 +72,6 @@ disable_startup_analytics: false
|
||||||
avatars: env://AUTHENTIK_AUTHENTIK__AVATARS?gravatar
|
avatars: env://AUTHENTIK_AUTHENTIK__AVATARS?gravatar
|
||||||
geoip: "./GeoLite2-City.mmdb"
|
geoip: "./GeoLite2-City.mmdb"
|
||||||
|
|
||||||
# Can't currently be configured via environment variables, only yaml
|
|
||||||
footer_links:
|
footer_links:
|
||||||
- name: Documentation
|
- name: Documentation
|
||||||
href: https://goauthentik.io/docs/?utm_source=authentik
|
href: https://goauthentik.io/docs/?utm_source=authentik
|
||||||
|
|
|
@ -165,6 +165,20 @@ Requires authentik 2021.10.5
|
||||||
|
|
||||||
Enable the ability for users to change their Usernames, defaults to `true`.
|
Enable the ability for users to change their Usernames, defaults to `true`.
|
||||||
|
|
||||||
|
### AUTHENTIK_FOOTER_LINKS
|
||||||
|
|
||||||
|
:::info
|
||||||
|
Requires authentik 2021.10.5
|
||||||
|
:::
|
||||||
|
|
||||||
|
This option configures the footer links on the flow executor pages.
|
||||||
|
|
||||||
|
The setting can be used as follows:
|
||||||
|
|
||||||
|
```
|
||||||
|
AUTHENTIK_FOOTER_LINKS='[{"name": "Link Name","href":"https://goauthentik.io"}]'
|
||||||
|
```
|
||||||
|
|
||||||
## Debugging
|
## Debugging
|
||||||
|
|
||||||
To check if your config has been applied correctly, you can run the following command to output the full config:
|
To check if your config has been applied correctly, you can run the following command to output the full config:
|
||||||
|
|
Reference in New Issue