You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
609 B
Markdown
28 lines
609 B
Markdown
```yaml
|
|
- name: Deploy Jitsi
|
|
hosts: jitsi
|
|
become: true
|
|
|
|
roles:
|
|
- role: jitsi
|
|
vars:
|
|
jitsi_public_url: "https://meet.example.com"
|
|
|
|
jitsi_timezone: "Europe/Warsaw"
|
|
|
|
jitsi_http_port: 80
|
|
jitsi_https_port: 443
|
|
|
|
jitsi_jvb_advertise_ips:
|
|
- "203.0.113.10"
|
|
|
|
jitsi_enable_http_redirect: true
|
|
|
|
jitsi_enable_auth: true
|
|
jitsi_enable_guests: true
|
|
jitsi_auth_type: internal
|
|
|
|
jitsi_jicofo_auth_password: "{{ vault_jitsi_jicofo_auth_password }}"
|
|
jitsi_jvb_auth_password: "{{ vault_jitsi_jvb_auth_password }}"
|
|
```
|