Matrix Docker Ansible eploy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

23 lines
898 B

  1. ---
  2. # Tells whether this role had executed or not. Toggled to `true` during runtime.
  3. matrix_nginx_proxy_role_executed: false
  4. matrix_ssl_renewal_systemd_units_list:
  5. - name: matrix-ssl-lets-encrypt-certificates-renew.service
  6. applicable: "{{ matrix_ssl_retrieval_method == 'lets-encrypt' }}"
  7. enableable: false
  8. priority: 5000
  9. - name: matrix-ssl-lets-encrypt-certificates-renew.timer
  10. applicable: "{{ matrix_ssl_retrieval_method == 'lets-encrypt' }}"
  11. enableable: true
  12. priority: 5000
  13. - name: matrix-ssl-nginx-proxy-reload.service
  14. applicable: "{{ matrix_ssl_retrieval_method == 'lets-encrypt' and matrix_nginx_proxy_enabled | bool }}"
  15. enableable: false
  16. priority: 5000
  17. - name: matrix-ssl-nginx-proxy-reload.timer
  18. applicable: "{{ matrix_ssl_retrieval_method == 'lets-encrypt' and matrix_nginx_proxy_enabled | bool }}"
  19. enableable: true
  20. priority: 5000