mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2024-11-06 02:37:31 +01:00
Add support for Jitsi internal authentication user creation
This commit is contained in:
parent
f2cd37685c
commit
dd1feffcc2
@ -232,30 +232,6 @@ matrix_jitsi_jvb_brewery_muc: jvbbrewery
|
|||||||
matrix_jitsi_jvb_rtp_udp_port: 10000
|
matrix_jitsi_jvb_rtp_udp_port: 10000
|
||||||
matrix_jitsi_jvb_rtp_tcp_port: 4443
|
matrix_jitsi_jvb_rtp_tcp_port: 4443
|
||||||
|
|
||||||
# JWT Auth
|
|
||||||
matrix_jitsi_auth_jwt_id: jitsi
|
|
||||||
matrix_jitsi_auth_jwt_secret: ''
|
|
||||||
matrix_jitsi_auth_jwt_accepted_issuers: ''
|
|
||||||
matrix_jitsi_authjwt_allow_empty: false
|
|
||||||
|
|
||||||
# Jigasi SIP Gateway Configuration - Not Fully Implemented
|
|
||||||
matrix_jitsi_jigasi_auth_user: ''
|
|
||||||
matrix_jitsi_jigasi_auth_password: ''
|
|
||||||
#JIGASI_SIP_URI: '' # SIP URI for incoming / outgoing calls test@sip2sip.info
|
|
||||||
#JIGASI_SIP_PASSWORD: '' # Password for the specified SIP account passw0rd
|
|
||||||
#JIGASI_SIP_SERVER SIP: '' # server (use the SIP account domain if in doubt) sip2sip.info
|
|
||||||
#JIGASI_SIP_PORT SIP: '5060' # server port 5060
|
|
||||||
#JIGASI_SIP_TRANSPORT: 'UDP' # SIP transport UDP
|
|
||||||
#DIALIN_NUMBERS_URL: 'https://jitsi.chs.chat/dial-in.json' # URL to the JSON with all Dial-In numbers. Example: https://meet.example.com/dialin.json
|
|
||||||
#CONFCODE_URL: '' # URL to the API for checking/generating Dial-In codes. Example: https://jitsi-api.jitsi.net/conferenceMapper
|
|
||||||
#GC_PROJECT_ID: # project_id from Google Cloud Credentials
|
|
||||||
#GC_PRIVATE_KEY_ID: # private_key_id from Google Cloud Credentials
|
|
||||||
#GC_PRIVATE_KEY: # private_key from Google Cloud Credentials
|
|
||||||
#GC_CLIENT_EMAIL: # client_email from Google Cloud Credentials
|
|
||||||
#GC_CLIENT_ID: # client_id from Google Cloud Credentials
|
|
||||||
#GC_CLIENT_CERT_URL: # client_x509_cert_url from Google Cloud Credentials
|
|
||||||
|
|
||||||
|
|
||||||
# Custom configuration to be injected into `custom-sip-communicator.properties`, passed to Jitsi JVB.
|
# Custom configuration to be injected into `custom-sip-communicator.properties`, passed to Jitsi JVB.
|
||||||
# This configuration gets appended to the final configuration that Jitsi JVB uses.
|
# This configuration gets appended to the final configuration that Jitsi JVB uses.
|
||||||
#
|
#
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
# Tasks related to setting up jitsi-prosody
|
# Tasks related to setting up jitsi-prosody
|
||||||
#
|
#
|
||||||
|
|
||||||
- name: Ensure Matrix jitsi-prosody path exists
|
- name: Ensure Matrix jitsi-prosody environment exists
|
||||||
file:
|
file:
|
||||||
path: "{{ item.path }}"
|
path: "{{ item.path }}"
|
||||||
state: directory
|
state: directory
|
||||||
@ -32,7 +32,7 @@
|
|||||||
mode: 0640
|
mode: 0640
|
||||||
when: matrix_jitsi_enabled|bool
|
when: matrix_jitsi_enabled|bool
|
||||||
|
|
||||||
- name: Ensure matrix-jitsi-prosody.service is installed
|
- name: Ensure matrix-jitsi-prosody.service file is installed
|
||||||
template:
|
template:
|
||||||
src: "{{ role_path }}/templates/prosody/matrix-jitsi-prosody.service.j2"
|
src: "{{ role_path }}/templates/prosody/matrix-jitsi-prosody.service.j2"
|
||||||
dest: "{{ matrix_systemd_path }}/matrix-jitsi-prosody.service"
|
dest: "{{ matrix_systemd_path }}/matrix-jitsi-prosody.service"
|
||||||
@ -58,7 +58,7 @@
|
|||||||
# Tasks related to getting rid of jitsi-prosody (if it was previously enabled)
|
# Tasks related to getting rid of jitsi-prosody (if it was previously enabled)
|
||||||
#
|
#
|
||||||
|
|
||||||
- name: Ensure matrix-jitsi-prosody service file exists
|
- name: Ensure matrix-jitsi-prosody.service file exists
|
||||||
stat:
|
stat:
|
||||||
path: "{{ matrix_systemd_path }}/matrix-jitsi-prosody.service"
|
path: "{{ matrix_systemd_path }}/matrix-jitsi-prosody.service"
|
||||||
register: matrix_jitsi_prosody_service_stat
|
register: matrix_jitsi_prosody_service_stat
|
||||||
@ -73,7 +73,7 @@
|
|||||||
register: stopping_result
|
register: stopping_result
|
||||||
when: "not matrix_jitsi_enabled|bool and matrix_jitsi_prosody_service_stat.stat.exists"
|
when: "not matrix_jitsi_enabled|bool and matrix_jitsi_prosody_service_stat.stat.exists"
|
||||||
|
|
||||||
- name: Ensure matrix-jitsi-prosody service file doesn't exist
|
- name: Ensure matrix-jitsi-prosody.service file doesn't exist
|
||||||
file:
|
file:
|
||||||
path: "{{ matrix_systemd_path }}/matrix-jitsi-prosody.service"
|
path: "{{ matrix_systemd_path }}/matrix-jitsi-prosody.service"
|
||||||
state: absent
|
state: absent
|
||||||
|
Loading…
Reference in New Issue
Block a user