synapse: Use federation port 8448
This commit is contained in:
@@ -72,3 +72,21 @@
|
|||||||
matrix_authentication_service_upstream_oauth2_scope: "{{ synapse_oidc_provider_scopes | join(' ') }}"
|
matrix_authentication_service_upstream_oauth2_scope: "{{ synapse_oidc_provider_scopes | join(' ') }}"
|
||||||
matrix_authentication_service_upstream_oauth2_claims_imports: "{{ synapse_oidc_provider_mas_claims_imports }}"
|
matrix_authentication_service_upstream_oauth2_claims_imports: "{{ synapse_oidc_provider_mas_claims_imports }}"
|
||||||
matrix_authentication_service_upstream_oauth2_human_name: "{{ synapse_oidc_provider_name }}"
|
matrix_authentication_service_upstream_oauth2_human_name: "{{ synapse_oidc_provider_name }}"
|
||||||
|
|
||||||
|
- name: Reverse proxy synapse federation
|
||||||
|
ansible.builtin.import_role:
|
||||||
|
name: uumas.general.vhost
|
||||||
|
vars:
|
||||||
|
vhost_type: reverse_proxy
|
||||||
|
vhost_id: synapse-federation
|
||||||
|
vhost_domains:
|
||||||
|
- "{{ synapse_external_domain }}:8448"
|
||||||
|
vhost_proxy_target_netproto: unix
|
||||||
|
vhost_proxy_target_socket: "/run/synapse-socat.sock"
|
||||||
|
|
||||||
|
- name: Open port for synapse federation
|
||||||
|
ansible.posix.firewalld:
|
||||||
|
service: matrix
|
||||||
|
state: enabled
|
||||||
|
permanent: true
|
||||||
|
immediate: true
|
||||||
|
|||||||
Reference in New Issue
Block a user