add jitsi meet
This commit is contained in:
parent
724ce880e3
commit
19e407ad0e
14 changed files with 196 additions and 8 deletions
|
@ -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:
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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]
|
||||
|
Reference in a new issue