Uses a new config directory in the docker compose project directory (prev. it used ~/.jitsi-meet-cfg)
This commit is contained in:
parent
a9aa130c60
commit
b0c1a4b0be
2 changed files with 10 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
# tasks file for jitsi
|
# tasks file for jitsi
|
||||||
- name: Ensure jitsi config directory exists
|
- name: Ensure jitsi Docker Compose config directory exists
|
||||||
file:
|
file:
|
||||||
path: /home/{{ docker_user }}/jitsi
|
path: /home/{{ docker_user }}/jitsi
|
||||||
state: directory
|
state: directory
|
||||||
|
@ -8,6 +8,14 @@
|
||||||
group: '{{ docker_user }}'
|
group: '{{ docker_user }}'
|
||||||
tags: config
|
tags: config
|
||||||
|
|
||||||
|
- name: Ensure jitsi config directory exists
|
||||||
|
file:
|
||||||
|
path: /home/{{ docker_user }}/jitsi/conf
|
||||||
|
state: directory
|
||||||
|
owner: '{{ docker_user }}'
|
||||||
|
group: '{{ docker_user }}'
|
||||||
|
tags: config
|
||||||
|
|
||||||
- name: Provide docker-compose.yml
|
- name: Provide docker-compose.yml
|
||||||
template:
|
template:
|
||||||
src: templates/docker-compose.jitsi.yml.j2
|
src: templates/docker-compose.jitsi.yml.j2
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
# Directory where all configuration will be stored.
|
# Directory where all configuration will be stored.
|
||||||
CONFIG=~/.jitsi-meet-cfg
|
CONFIG=./conf
|
||||||
|
|
||||||
# Exposed HTTP port.
|
# Exposed HTTP port.
|
||||||
HTTP_PORT={{ jitsi_exposed_http_port }}
|
HTTP_PORT={{ jitsi_exposed_http_port }}
|
||||||
|
|
Loading…
Add table
Reference in a new issue