ansible-playbooks

another attempt to have everything organized ...
git clone https://git.e1e0.net/ansible-playbooks.git
Log | Files | Refs | README | LICENSE

commit 937ffdcd2cf38c1de66b6fa8bb54c0869b295c8f
parent da18321ec47e63c1b36dcf658633d9977848afe2
Author: Paco Esteban <paco@e1e0.net>
Date:   Sat, 16 May 2020 10:59:48 +0200

Revert "jitsi playbook: make jitsi instance authenticated"

This reverts commit f40557c1893f6f516786989d62da9db0a3d543d2.

Diffstat:
Mjitsi.yml | 48------------------------------------------------
1 file changed, 0 insertions(+), 48 deletions(-)

diff --git a/jitsi.yml b/jitsi.yml @@ -111,51 +111,3 @@ ufw: state: enabled policy: deny - - name: configure sec on prosody - lineinfile: - path: "/etc/prosody/prosody.cfg.lua" - regexp: 'authentication = .anonymous.' - line: 'authentication = "internal_plain"' - notify: restart prosody - - name: configure guest vhost on prosody - blockinfile: - path: "/etc/prosody/prosody.cfg.lua" - block: | - VirtualHost "guest.{{ jitsi_meet_server_name }}" - authentication = "anonymous" - c2s_require_encryption = false - marker: "-- {mark} ANSIBLE MANAGED BLOCK" - notify: restart prosody - - name: configure jitsi guest domain - lineinfile: - path: "/etc/jitsi/meet/{{ jitsi_meet_server_name }}-config.js" - regexp: 'anonymousdomain:' - line: > - anonymousdomain: 'guest.{{ jitsi_meet_server_name }}', - notify: - - restart videobridge - - restart jicofo - - name: configure jicofo - lineinfile: - path: "/etc/jitsi/jicofo/sip-communicator.properties" - line: 'org.jitsi.jicofo.auth.URL=XMPP:{{ jitsi_meet_server_name }}' - notify: - - restart videobridge - - restart jicofo - handlers: - - name: restart sshd - service: - name: sshd - state: restarted - - name: restart prosody - service: - name: prosody - state: restarted - - name: restart jicofo - service: - name: jicofo - state: restarted - - name: restart videobridge - service: - name: jitsi-videobridge2 - state: restarted