Matrix Docker Ansible eploy
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 

22 linhas
998 B

  1. ---
  2. - name: Fail if required Jitsi settings not defined
  3. fail:
  4. msg: >-
  5. You need to define a required configuration setting (`{{ item }}`) for using Jitsi.
  6. If you're setting up Jitsi for the first time, you may have missed a step.
  7. Refer to our setup instructions (docs/configuring-playbook-jitsi.md).
  8. If you had setup Jitsi successfully before and it's just now that you're observing this failure,
  9. it means that your installation may be using some default passwords that the playbook used to define until now.
  10. This is not secure and we urge you to rebuild your Jitsi setup.
  11. Refer to the "Rebuilding your Jitsi installation" section in our setup instructions (docs/configuring-playbook-jitsi.md).
  12. when: "vars[item] == ''"
  13. with_items:
  14. - "matrix_jitsi_jibri_xmpp_password"
  15. - "matrix_jitsi_jibri_recorder_password"
  16. - "matrix_jitsi_jicofo_component_secret"
  17. - "matrix_jitsi_jicofo_auth_password"
  18. - "matrix_jitsi_jvb_auth_password"