20 lines
771 B
Text
20 lines
771 B
Text
|
[oidc]
|
||
|
client-id = "{{ demoapp_client_id }}"
|
||
|
client-secret = "{{ demoapp_client_secret }}"
|
||
|
server = "https://{{ oidc_urls.hydra_public.host }}:{{ oidc_urls.hydra_public.port }}/"
|
||
|
|
||
|
[server]
|
||
|
name = "{{ oidc_urls.demoapp.host }}"
|
||
|
address = "{{ oidc_urls.demoapp.address | default(ansible_default_ipv4.address) }}"
|
||
|
port = {{ oidc_urls.demoapp.address | default("4000") }}
|
||
|
certificate = "{{ demoapp_tls.cert }}"
|
||
|
key = "{{ demoapp_tls.key }}"
|
||
|
|
||
|
[session]
|
||
|
auth-key = "{{ demoapp_auth_key | default(lookup('community.general.random_string', length=64, base64=true)) }}"
|
||
|
enc-key = "{{ demoapp_enc_key | default(lookup('community.general.random_string', length=32, base64=true)) }}"
|
||
|
path = "{{ demoapp_session_path | default('/var/cache/cacert/sessions') }}"
|
||
|
|
||
|
[log]
|
||
|
level = "trace"
|