mirror of
https://github.com/mother-of-all-self-hosting/mash-playbook
synced 2024-11-12 23:27:14 +00:00
Relocate Jitsi section in group vars (alphabetically)
This commit is contained in:
parent
e85fae145c
commit
eb8586ed10
1 changed files with 49 additions and 49 deletions
|
@ -1136,6 +1136,55 @@ hubsite_service_list_auto: |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
########################################################################
|
||||||
|
# #
|
||||||
|
# jitsi #
|
||||||
|
# #
|
||||||
|
########################################################################
|
||||||
|
|
||||||
|
jitsi_enabled: false
|
||||||
|
|
||||||
|
jitsi_architecture: "{{ mash_playbook_architecture }}"
|
||||||
|
|
||||||
|
jitsi_identifier: "{{ mash_playbook_service_identifier_prefix }}jitsi"
|
||||||
|
|
||||||
|
jitsi_base_path: "{{ mash_playbook_base_path }}/{{ mash_playbook_service_base_directory_name_prefix }}jitsi"
|
||||||
|
|
||||||
|
jitsi_uid: "{{ mash_playbook_uid }}"
|
||||||
|
jitsi_gid: "{{ mash_playbook_gid }}"
|
||||||
|
|
||||||
|
jitsi_web_container_additional_networks_auto: |
|
||||||
|
{{
|
||||||
|
([mash_playbook_reverse_proxyable_services_additional_network] if mash_playbook_reverse_proxyable_services_additional_network else [])
|
||||||
|
}}
|
||||||
|
|
||||||
|
jitsi_prosody_container_additional_networks_auto: |
|
||||||
|
{{
|
||||||
|
([mash_playbook_reverse_proxyable_services_additional_network] if mash_playbook_reverse_proxyable_services_additional_network else [])
|
||||||
|
}}
|
||||||
|
|
||||||
|
jitsi_jvb_container_additional_networks_auto: |
|
||||||
|
{{
|
||||||
|
([mash_playbook_reverse_proxyable_services_additional_network] if mash_playbook_reverse_proxyable_services_additional_network else [])
|
||||||
|
}}
|
||||||
|
|
||||||
|
jitsi_container_labels_traefik_enabled: "{{ mash_playbook_traefik_labels_enabled }}"
|
||||||
|
jitsi_container_labels_traefik_docker_network: "{{ mash_playbook_reverse_proxyable_services_additional_network }}"
|
||||||
|
jitsi_container_labels_traefik_entrypoints: "{{ devture_traefik_entrypoint_primary }}"
|
||||||
|
jitsi_container_labels_traefik_tls_certResolver: "{{ devture_traefik_certResolver_primary }}"
|
||||||
|
|
||||||
|
jitsi_jibri_xmpp_password: "{{ '%s' | format(mash_playbook_generic_secret_key) | password_hash('sha512', 'jibri', rounds=655555) | to_uuid }}"
|
||||||
|
jitsi_jicofo_auth_password: "{{ '%s' | format(mash_playbook_generic_secret_key) | password_hash('sha512', 'jicofo', rounds=655555) | to_uuid }}"
|
||||||
|
jitsi_jvb_auth_password: "{{ '%s' | format(mash_playbook_generic_secret_key) | password_hash('sha512', 'jvb', rounds=655555) | to_uuid }}"
|
||||||
|
|
||||||
|
########################################################################
|
||||||
|
# #
|
||||||
|
# /jitsi #
|
||||||
|
# #
|
||||||
|
########################################################################
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
########################################################################
|
########################################################################
|
||||||
# #
|
# #
|
||||||
# keycloak #
|
# keycloak #
|
||||||
|
@ -1936,52 +1985,3 @@ devture_woodpecker_ci_agent_config_agent_secret: "{{ devture_woodpecker_ci_serve
|
||||||
# #
|
# #
|
||||||
########################################################################
|
########################################################################
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
########################################################################
|
|
||||||
# #
|
|
||||||
# jitsi #
|
|
||||||
# #
|
|
||||||
########################################################################
|
|
||||||
|
|
||||||
jitsi_enabled: false
|
|
||||||
|
|
||||||
jitsi_architecture: "{{ mash_playbook_architecture }}"
|
|
||||||
|
|
||||||
jitsi_identifier: "{{ mash_playbook_service_identifier_prefix }}jitsi"
|
|
||||||
|
|
||||||
jitsi_base_path: "{{ mash_playbook_base_path }}/{{ mash_playbook_service_base_directory_name_prefix }}jitsi"
|
|
||||||
|
|
||||||
jitsi_uid: "{{ mash_playbook_uid }}"
|
|
||||||
jitsi_gid: "{{ mash_playbook_gid }}"
|
|
||||||
|
|
||||||
jitsi_web_container_additional_networks_auto: |
|
|
||||||
{{
|
|
||||||
([mash_playbook_reverse_proxyable_services_additional_network] if mash_playbook_reverse_proxyable_services_additional_network else [])
|
|
||||||
}}
|
|
||||||
|
|
||||||
jitsi_prosody_container_additional_networks_auto: |
|
|
||||||
{{
|
|
||||||
([mash_playbook_reverse_proxyable_services_additional_network] if mash_playbook_reverse_proxyable_services_additional_network else [])
|
|
||||||
}}
|
|
||||||
|
|
||||||
jitsi_jvb_container_additional_networks_auto: |
|
|
||||||
{{
|
|
||||||
([mash_playbook_reverse_proxyable_services_additional_network] if mash_playbook_reverse_proxyable_services_additional_network else [])
|
|
||||||
}}
|
|
||||||
|
|
||||||
jitsi_container_labels_traefik_enabled: "{{ mash_playbook_traefik_labels_enabled }}"
|
|
||||||
jitsi_container_labels_traefik_docker_network: "{{ mash_playbook_reverse_proxyable_services_additional_network }}"
|
|
||||||
jitsi_container_labels_traefik_entrypoints: "{{ devture_traefik_entrypoint_primary }}"
|
|
||||||
jitsi_container_labels_traefik_tls_certResolver: "{{ devture_traefik_certResolver_primary }}"
|
|
||||||
|
|
||||||
jitsi_jibri_xmpp_password: "{{ '%s' | format(mash_playbook_generic_secret_key) | password_hash('sha512', 'jibri', rounds=655555) | to_uuid }}"
|
|
||||||
jitsi_jicofo_auth_password: "{{ '%s' | format(mash_playbook_generic_secret_key) | password_hash('sha512', 'jicofo', rounds=655555) | to_uuid }}"
|
|
||||||
jitsi_jvb_auth_password: "{{ '%s' | format(mash_playbook_generic_secret_key) | password_hash('sha512', 'jvb', rounds=655555) | to_uuid }}"
|
|
||||||
|
|
||||||
########################################################################
|
|
||||||
# #
|
|
||||||
# /jitsi #
|
|
||||||
# #
|
|
||||||
########################################################################
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue