Compare commits
No commits in common. "aacd838f56b68cb22cc1f8e1a70e81d2ad432d16" and "9812972f4c8993d93a38294769a8bf243e868cb7" have entirely different histories.
aacd838f56
...
9812972f4c
3 changed files with 7 additions and 13 deletions
|
@ -1,10 +1,2 @@
|
||||||
---
|
---
|
||||||
# defaults file for jitsi
|
# defaults file for jitsi
|
||||||
docker_user: deploy
|
|
||||||
#jitsi_letsencrypt_email:alice@host.tld
|
|
||||||
jitsi_enable_letsencrypt: False
|
|
||||||
jitsi_exposed_http_port: 8000
|
|
||||||
jitsi_exposed_https_port: 8443
|
|
||||||
jitsi_virtual_host: localhost
|
|
||||||
jitsi_public_url: http://{{ jitsi_virtual_host }}
|
|
||||||
jitsi_timezone: Europe/Amsterdam
|
|
|
@ -52,6 +52,10 @@
|
||||||
that:
|
that:
|
||||||
- "output.ansible_facts['web']['jitsi_web_1'].state.running"
|
- "output.ansible_facts['web']['jitsi_web_1'].state.running"
|
||||||
|
|
||||||
|
- name: Get container IP
|
||||||
|
set_fact:
|
||||||
|
jitsi_container_ip: "{{ output.ansible_facts['web']['jitsi_web_1']['networks']['jitsi_meet.jitsi'].IPAddress }}"
|
||||||
|
|
||||||
- name: "Waiting for Jitsi container to become available"
|
- name: "Waiting for Jitsi container to become available"
|
||||||
become: false
|
become: false
|
||||||
wait_for:
|
wait_for:
|
||||||
|
|
|
@ -22,21 +22,19 @@ VIRTUAL_HOST={{ jitsi_virtual_host }}
|
||||||
# in the README.
|
# in the README.
|
||||||
DOCKER_HOST_ADDRESS={{ jitsi_docker_host_address }}
|
DOCKER_HOST_ADDRESS={{ jitsi_docker_host_address }}
|
||||||
|
|
||||||
{% if jitsi_enable_letsencrypt %}
|
|
||||||
#
|
#
|
||||||
# Let's Encrypt configuration
|
# Let's Encrypt configuration
|
||||||
#
|
#
|
||||||
|
|
||||||
# Enable Let's Encrypt certificate generation.
|
# Enable Let's Encrypt certificate generation.
|
||||||
ENABLE_LETSENCRYPT=0
|
ENABLE_LETSENCRYPT={{ 1 if jitsi_enable_letsencrypt == True else 0 }}
|
||||||
|
|
||||||
# Domain for which to generate the certificate.
|
# Domain for which to generate the certificate.
|
||||||
LETSENCRYPT_DOMAIN={{ jitsi_virtual_host }}
|
#LETSENCRYPT_DOMAIN=meet.example.com
|
||||||
|
|
||||||
# E-Mail for receiving important account notifications (mandatory).
|
# E-Mail for receiving important account notifications (mandatory).
|
||||||
LETSENCRYPT_EMAIL={{ jitsi_letsencrypt_email }}
|
#LETSENCRYPT_EMAIL=alice@atlanta.net
|
||||||
|
|
||||||
{% endif -%}
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Etherpad integration (for document sharing)
|
# Etherpad integration (for document sharing)
|
||||||
|
|
Loading…
Add table
Reference in a new issue