Merge branch 'master' of https://gitea.rknet.org/ansible/xoxys.matrix
Some checks failed
continuous-integration/drone/push Build is failing
Some checks failed
continuous-integration/drone/push Build is failing
This commit is contained in:
commit
b3f92a668c
@ -28,7 +28,7 @@ steps:
|
|||||||
settings:
|
settings:
|
||||||
homeserver: https://matrix.rknet.org
|
homeserver: https://matrix.rknet.org
|
||||||
roomid: MtidqQXWWAtQcByBhH:rknet.org
|
roomid: MtidqQXWWAtQcByBhH:rknet.org
|
||||||
template: "Status: [**_{{ build.status }}_**]({{ build.link }})<br/> Build: {{ repo.Owner }}/{{ repo.Name }}#{{ truncate build.commit 8 }} ({{ build.branch }}) by {{ build.author }}<br/> Message: {{ build.message }}"
|
template: "Status: **{{ build.status }}**<br/> Build: [{{ repo.Owner }}/{{ repo.Name }}]({{ build.link }}) ({{ build.branch }}) by {{ build.author }}<br/> Message: {{ build.message }}"
|
||||||
username:
|
username:
|
||||||
from_secret: matrix_username
|
from_secret: matrix_username
|
||||||
password:
|
password:
|
||||||
|
@ -40,6 +40,13 @@ matrix_conf_dir: "{{ matrix_base_dir }}/config"
|
|||||||
matrix_data_dir: "{{ matrix_base_dir }}/data"
|
matrix_data_dir: "{{ matrix_base_dir }}/data"
|
||||||
matrix_log_dir: "{{ matrix_base_dir }}/logs"
|
matrix_log_dir: "{{ matrix_base_dir }}/logs"
|
||||||
|
|
||||||
|
matrix_log_file_level: INFO
|
||||||
|
matrix_log_console_level: ERROR
|
||||||
|
matrix_log_synapse_level: INFO
|
||||||
|
matrix_log_synapse_sql_level: INFO
|
||||||
|
matrix_log_ldap_level: INFO
|
||||||
|
matrix_log_ldap_auth_level: INFO
|
||||||
|
|
||||||
matrix_server_url: example.com
|
matrix_server_url: example.com
|
||||||
matrix_client_url: https://matrix.example.com
|
matrix_client_url: https://matrix.example.com
|
||||||
|
|
||||||
|
@ -122,7 +122,7 @@ listeners:
|
|||||||
# Main HTTPS listener
|
# Main HTTPS listener
|
||||||
- port: {{ matrix_https_bind_port }}
|
- port: {{ matrix_https_bind_port }}
|
||||||
bind_addresses:
|
bind_addresses:
|
||||||
{{ matrix_https_bind_ips | to_nice_yaml(indent=2) }}
|
{{ matrix_https_bind_ips | to_nice_yaml(indent=2) | indent(4) }}
|
||||||
type: http
|
type: http
|
||||||
tls: true
|
tls: true
|
||||||
x_forwarded: false
|
x_forwarded: false
|
||||||
@ -154,7 +154,7 @@ listeners:
|
|||||||
- port: {{ matrix_http_bind_port }}
|
- port: {{ matrix_http_bind_port }}
|
||||||
tls: false
|
tls: false
|
||||||
bind_addresses:
|
bind_addresses:
|
||||||
{{ matrix_https_bind_ips | to_nice_yaml(indent=2) }}
|
{{ matrix_http_bind_ips | to_nice_yaml(indent=2) | indent(4) }}
|
||||||
type: http
|
type: http
|
||||||
|
|
||||||
x_forwarded: false
|
x_forwarded: false
|
||||||
|
@ -20,29 +20,29 @@ handlers:
|
|||||||
backupCount: 10
|
backupCount: 10
|
||||||
filters: [context]
|
filters: [context]
|
||||||
encoding: utf8
|
encoding: utf8
|
||||||
level: DEBUG
|
level: {{ matrix_log_file_level }}
|
||||||
console:
|
console:
|
||||||
class: logging.StreamHandler
|
class: logging.StreamHandler
|
||||||
formatter: precise
|
formatter: precise
|
||||||
filters: [context]
|
filters: [context]
|
||||||
|
level: {{ matrix_log_console_level }}
|
||||||
|
|
||||||
loggers:
|
loggers:
|
||||||
synapse:
|
synapse:
|
||||||
level: INFO
|
level: {{ matrix_log_synapse_level }}
|
||||||
|
|
||||||
synapse.storage.SQL:
|
synapse.storage.SQL:
|
||||||
# beware: increasing this to DEBUG will make synapse log sensitive
|
# beware: increasing this to DEBUG will make synapse log sensitive
|
||||||
# information such as access tokens.
|
# information such as access tokens.
|
||||||
level: INFO
|
level: {{ matrix_log_synapse_sql_level }}
|
||||||
|
|
||||||
{% if matrix_ldap_auth_enabled %}
|
{% if matrix_ldap_auth_enabled %}
|
||||||
ldap3:
|
ldap3:
|
||||||
level: DEBUG
|
level: {{ matrix_log_ldap_level }}
|
||||||
|
|
||||||
ldap_auth_provider:
|
ldap_auth_provider:
|
||||||
level: DEBUG
|
level: {{ matrix_log_ldap_auth_level }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
root:
|
root:
|
||||||
level: INFO
|
|
||||||
handlers: [file, console]
|
handlers: [file, console]
|
||||||
|
Loading…
Reference in New Issue
Block a user