mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2026-01-31 17:03:29 +03:00
Compare commits
3 Commits
704eae3040
...
db54063a0c
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
db54063a0c | ||
|
|
8857f78a4d | ||
|
|
1b8c153c4a |
@@ -314,6 +314,24 @@ matrix_authentication_service_config_secrets_keys: |-
|
||||
# #
|
||||
########################################################################################
|
||||
|
||||
# Controls the resources exposed by the `web` HTTP listener.
|
||||
matrix_authentication_service_config_http_listener_web_resources: "{{ matrix_authentication_service_config_http_listener_web_resources_default + matrix_authentication_service_config_http_listener_web_resources_auto + matrix_authentication_service_config_http_listener_web_resources_custom }}"
|
||||
matrix_authentication_service_config_http_listener_web_resources_default: |-
|
||||
{{
|
||||
[
|
||||
{'name': 'discovery'},
|
||||
{'name': 'human'},
|
||||
{'name': 'oauth'},
|
||||
{'name': 'compat'},
|
||||
{'name': 'graphql'},
|
||||
{'name': 'assets'},
|
||||
]
|
||||
+
|
||||
[{'name': 'adminapi'} if matrix_authentication_service_admin_api_enabled else []]
|
||||
}}
|
||||
matrix_authentication_service_config_http_listener_web_resources_auto: []
|
||||
matrix_authentication_service_config_http_listener_web_resources_custom: []
|
||||
|
||||
# Controls the `http.public_base` configuration setting.
|
||||
matrix_authentication_service_config_http_public_base: "https://{{ matrix_authentication_service_hostname }}{{ '/' if matrix_authentication_service_path_prefix == '/' else (matrix_authentication_service_path_prefix + '/') }}"
|
||||
|
||||
@@ -609,6 +627,10 @@ matrix_authentication_service_syn2mas_subcommand_extra_options: []
|
||||
# - avoid setting up the "compatibility layer" (that is, avoid installing container labels that capture login endpoints like `/_matrix/client/*/login`, etc.)
|
||||
matrix_authentication_service_migration_in_progress: false
|
||||
|
||||
# Controls whether the admin API is enabled.
|
||||
# Ref: https://element-hq.github.io/matrix-authentication-service/topics/admin-api.html#enabling-the-api
|
||||
matrix_authentication_service_admin_api_enabled: false
|
||||
|
||||
########################################################################################
|
||||
# #
|
||||
# /Misc #
|
||||
|
||||
@@ -2,13 +2,7 @@
|
||||
http:
|
||||
listeners:
|
||||
- name: web
|
||||
resources:
|
||||
- name: discovery
|
||||
- name: human
|
||||
- name: oauth
|
||||
- name: compat
|
||||
- name: graphql
|
||||
- name: assets
|
||||
resources: {{ matrix_authentication_service_config_http_listener_web_resources | to_json }}
|
||||
binds:
|
||||
- address: '[::]:8080'
|
||||
proxy_protocol: false
|
||||
|
||||
@@ -25,7 +25,7 @@ matrix_synapse_admin_container_image_self_build: false
|
||||
matrix_synapse_admin_container_image_self_build_repo: "https://github.com/etkecc/synapse-admin.git"
|
||||
|
||||
# renovate: datasource=docker depName=ghcr.io/etkecc/synapse-admin
|
||||
matrix_synapse_admin_version: v0.11.1-etke47
|
||||
matrix_synapse_admin_version: v0.11.1-etke48
|
||||
matrix_synapse_admin_docker_image: "{{ matrix_synapse_admin_docker_image_registry_prefix }}etkecc/synapse-admin:{{ matrix_synapse_admin_version }}"
|
||||
matrix_synapse_admin_docker_image_registry_prefix: "{{ 'localhost/' if matrix_synapse_admin_container_image_self_build else matrix_synapse_admin_docker_image_registry_prefix_upstream }}"
|
||||
matrix_synapse_admin_docker_image_registry_prefix_upstream: "{{ matrix_synapse_admin_docker_image_registry_prefix_upstream_default }}"
|
||||
|
||||
Reference in New Issue
Block a user