chore(authelia): more config migration in preparation for authelia 5.0.x
This commit is contained in:
parent
bab5b94500
commit
908b579f2c
@ -57,10 +57,18 @@ authelia_config_server_address: >-2
|
|||||||
{{ authelia_config_server_host }}:{{ authelia_config_server_port }}
|
{{ authelia_config_server_host }}:{{ authelia_config_server_port }}
|
||||||
authelia_config_server_path: ""
|
authelia_config_server_path: ""
|
||||||
authelia_config_server_asset_path: "/config/assets/"
|
authelia_config_server_asset_path: "/config/assets/"
|
||||||
authelia_config_server_read_buffer_size: 4096
|
authelia_config_server_buffers_read: 4096
|
||||||
authelia_config_server_write_buffer_size: 4096
|
authelia_config_server_read_buffer_size: >-2
|
||||||
authelia_config_server_enable_pprof: true
|
{{ authelia_config_server_buffers_read }}
|
||||||
authelia_config_server_enable_expvars: true
|
authelia_config_server_buffers_write: 4096
|
||||||
|
authelia_config_server_write_buffer_size: >-2
|
||||||
|
{{ authelia_config_server_buffers_write }}
|
||||||
|
authelia_config_server_endpoints_enable_pprof: true
|
||||||
|
authelia_config_server_enable_pprof: >-2
|
||||||
|
{{ authelia_config_server_endpoints_enable_pprof }}
|
||||||
|
authelia_config_server_endpoints_enable_expvars: true
|
||||||
|
authelia_config_server_enable_expvars: >-2
|
||||||
|
{{ authelia_config_server_endpoints_enable_expvars }}
|
||||||
authelia_config_server_disable_healthcheck:
|
authelia_config_server_disable_healthcheck:
|
||||||
authelia_config_server_tls_key: ~
|
authelia_config_server_tls_key: ~
|
||||||
authelia_config_server_tls_certificate: ~
|
authelia_config_server_tls_certificate: ~
|
||||||
@ -146,6 +154,8 @@ authelia_config_session_secret: ~
|
|||||||
authelia_config_session_expiration: 1h
|
authelia_config_session_expiration: 1h
|
||||||
authelia_config_session_inactivity: 5m
|
authelia_config_session_inactivity: 5m
|
||||||
authelia_config_session_remember_me_duration: 1M
|
authelia_config_session_remember_me_duration: 1M
|
||||||
|
authelia_config_session_remember_me: >-2
|
||||||
|
{{ authelia_config_session_remember_me_duration }}
|
||||||
authelia_config_session_redis_host: "{{ authelia_redis_host }}"
|
authelia_config_session_redis_host: "{{ authelia_redis_host }}"
|
||||||
authelia_config_session_redis_port: "{{ authelia_redis_port }}"
|
authelia_config_session_redis_port: "{{ authelia_redis_port }}"
|
||||||
authelia_config_session_redis_username: "{{ authelia_redis_user }}"
|
authelia_config_session_redis_username: "{{ authelia_redis_user }}"
|
||||||
|
@ -50,14 +50,18 @@ authelia_config_server: >-2
|
|||||||
{
|
{
|
||||||
"address": authelia_config_server_address,
|
"address": authelia_config_server_address,
|
||||||
"asset_path": authelia_config_server_asset_path,
|
"asset_path": authelia_config_server_asset_path,
|
||||||
"read_buffer_size": authelia_config_server_read_buffer_size,
|
|
||||||
"write_buffer_size": authelia_config_server_write_buffer_size,
|
|
||||||
"enable_pprof": authelia_config_server_enable_pprof,
|
|
||||||
"enable_expvars": authelia_config_server_enable_expvars,
|
|
||||||
"disable_healthcheck": authelia_config_server_disable_healthcheck,
|
"disable_healthcheck": authelia_config_server_disable_healthcheck,
|
||||||
|
"endpoints": authelia_config_server_endpoints,
|
||||||
|
"buffers": authelia_config_server_buffers,
|
||||||
} | combine({"headers": {"csp_template": authelia_config_server_headers_csp_template}}
|
} | combine({"headers": {"csp_template": authelia_config_server_headers_csp_template}}
|
||||||
if authelia_config_server_headers_csp_template | default(false, true) else {})
|
if authelia_config_server_headers_csp_template | default(false, true) else {})
|
||||||
}}
|
}}
|
||||||
|
authelia_config_server_endpoints:
|
||||||
|
enable_expvars: "{{ authelia_config_server_endpoints_enable_expvars }}"
|
||||||
|
enable_pprof: "{{ authelia_config_server_endpoints_enable_pprof }}"
|
||||||
|
authelia_config_server_buffers:
|
||||||
|
read: "{{ authelia_config_server_buffers_read }}"
|
||||||
|
write: "{{ authelia_config_server_buffers_write }}"
|
||||||
authelia_config_server_tls:
|
authelia_config_server_tls:
|
||||||
key: "{{ authelia_config_server_tls_key }}"
|
key: "{{ authelia_config_server_tls_key }}"
|
||||||
certificate: "{{ authelia_config_server_tls_certificate }}"
|
certificate: "{{ authelia_config_server_tls_certificate }}"
|
||||||
@ -173,7 +177,7 @@ authelia_config_session:
|
|||||||
secret: "{{ authelia_config_session_secret }}"
|
secret: "{{ authelia_config_session_secret }}"
|
||||||
expiration: "{{ authelia_config_session_expiration }}"
|
expiration: "{{ authelia_config_session_expiration }}"
|
||||||
inactivity: "{{ authelia_config_session_inactivity }}"
|
inactivity: "{{ authelia_config_session_inactivity }}"
|
||||||
remember_me_duration: "{{ authelia_config_session_remember_me_duration }}"
|
remember_me: "{{ authelia_config_session_remember_me }}"
|
||||||
authelia_config_session_redis: >-2
|
authelia_config_session_redis: >-2
|
||||||
{{
|
{{
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user