add jitsi meet

This commit is contained in:
Pim Kunis 2023-01-14 18:00:01 +01:00
parent 724ce880e3
commit 19e407ad0e
14 changed files with 196 additions and 8 deletions

View file

@ -13,8 +13,8 @@
src: "{{ role_path }}/templates/docker-compose.yml.j2"
dest: "{{ service_dir }}/docker-compose.yml"
- name: Copy traefik.toml
copy:
src: "{{ role_path }}/files/traefik.toml"
template:
src: "{{ role_path }}/templates/traefik.toml.j2"
dest: "{{ service_dir }}/traefik.toml"
- name: Copy services.toml
copy:

View file

@ -18,7 +18,7 @@ services:
ports:
- "443:443"
- "80:80"
- "56287:56287"
- "{{ git_ssh_port }}:{{ git_ssh_port }}"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- {{ service_dir }}/traefik.toml:/etc/traefik/traefik.toml

View file

@ -6,7 +6,9 @@ loglevel = "DEBUG"
[entryPoints.websecure]
address = ":443"
[entryPoints.ssh]
address = ":56287"
address = ":{{ git_ssh_port }}"
[entryPoints.video]
address = ":{{ jitsi_videobridge_port }}/udp"
[api]