aboutsummaryrefslogtreecommitdiff
path: root/app/deployment/jitsi.hcl
blob: 93c87f725d8192e2c0dc71ccf8ae16ca861f6a94 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
job "jitsi" {
  datacenters = ["dc1"]
  type = "service"

  constraint {
    attribute = "${attr.cpu.arch}"
    value     = "amd64"
  }

  group "core" {
    task "xmpp" {
      driver = "docker"
      config {
        image = "superboum/amd64_jitsi_xmpp:v4"
        network_mode = "host"
      }

      template {
        data = "{{ key \"secrets/jitsi/auth.jitsi.deuxfleurs.fr.crt\" }}"
        destination = "secrets/certs/auth.jitsi.deuxfleurs.fr.crt"
      }
      template {
        data = "{{ key \"secrets/jitsi/auth.jitsi.deuxfleurs.fr.key\" }}"
        destination = "secrets/certs/auth.jitsi.deuxfleurs.fr.key"
      }
      template {
        data = "{{ key \"secrets/jitsi/jitsi.deuxfleurs.fr.crt\" }}"
        destination = "secrets/certs/jitsi.deuxfleurs.fr.crt"
      }
      template {
        data = "{{ key \"secrets/jitsi/jitsi.deuxfleurs.fr.key\" }}"
        destination = "secrets/certs/jitsi.deuxfleurs.fr.key"
      }
      artifact {
        source = "http://127.0.0.1:8500/v1/kv/secrets/jitsi/global_env?raw"
        destination = "secrets/global_env.tpl"
        mode = "file"
      }
      template {
        source = "secrets/global_env.tpl"
        destination = "secrets/global_env"
        env = true
      }

      resources {
        cpu = 300
        memory = 200
      }

      service {
        tags = [ "jitsi", "bosh" ]
        port = 5280
        address_mode = "driver"
        name = "jitsi-xmpp-bosh"
        check {
          type = "tcp"
          address_mode = "driver"
          port = 5280
          interval = "60s"
          timeout = "5s"
          check_restart {
            limit = 3
            grace = "90s"
            ignore_warnings = false
          }
        }
      }

      service {
        tags = [ "jitsi", "ext" ]
        port = 5347
        address_mode = "driver"
        name = "jitsi-ext"
      }

      service {
        tags = [ "jitsi", "xmpp" ]
        port = 5222
        address_mode = "driver"
        name = "jitsi-xmpp"
      }
    }

    task "front" {
      driver = "docker"
      config {
        image = "superboum/amd64_jitsi_meet:v1"
        network_mode = "host"
      }

      template {
        data = "{{ key \"secrets/jitsi/jitsi.deuxfleurs.fr.crt\" }}"
        destination = "secrets/certs/jitsi.deuxfleurs.fr.crt"
      }
      template {
        data = "{{ key \"secrets/jitsi/jitsi.deuxfleurs.fr.key\" }}"
        destination = "secrets/certs/jitsi.deuxfleurs.fr.key"
      }
      artifact {
        source = "http://127.0.0.1:8500/v1/kv/secrets/jitsi/global_env?raw"
        destination = "secrets/global_env.tpl"
        mode = "file"
      }
      template {
        source = "secrets/global_env.tpl"
        destination = "secrets/global_env"
        env = true
      }

      resources {
        cpu = 300
        memory = 200
      } 

     service {
        tags = [
          "jitsi",
          "traefik.enable=true",
          "traefik.frontend.entryPoints=https,http",
          "traefik.frontend.rule=Host:jitsi.deuxfleurs.fr;PathPrefix:/",
          "traefik.protocol=https"
        ]
        port = 443
        address_mode = "driver"
        name = "jitsi-front-https"
        check {
          type = "tcp"
          port = 443
          address_mode = "driver"
          interval = "60s"
          timeout = "5s"
          check_restart {
            limit = 3
            grace = "90s"
            ignore_warnings = false
          }
        }
      }
    }

    task "jicofo" {
      driver = "docker"
      config {
        image = "superboum/amd64_jitsi_conference_focus:v5"
        network_mode = "host"
      }

      template {
        data = "{{ key \"secrets/jitsi/jitsi.deuxfleurs.fr.crt\" }}"
        destination = "secrets/certs/jitsi.deuxfleurs.fr.crt"
      }
      template {
        data = "{{ key \"secrets/jitsi/auth.jitsi.deuxfleurs.fr.crt\" }}"
        destination = "secrets/certs/auth.jitsi.deuxfleurs.fr.crt"
      }
      artifact {
        source = "http://127.0.0.1:8500/v1/kv/secrets/jitsi/global_env?raw"
        destination = "secrets/global_env.tpl"
        mode = "file"
      }
      template {
        source = "secrets/global_env.tpl"
        destination = "secrets/global_env"
        env = true
      }

      resources {
        cpu = 300
        memory = 400
      } 
    }

    task "videobridge" {
      driver = "docker"
      config {
        image = "superboum/amd64_jitsi_videobridge:v15"
        network_mode = "host"
        port_map { video1_port = 8080 } # this is a hack, check secrets/jitsi/global_env to understand why
        ulimit {
          nofile = "1048576:1048576"
          nproc = "65536:65536"
        }
      }

      env {
        #JITSI_DEBUG = 1
        JITSI_VIDEO_TCP = 8080
      }

      artifact {
        source = "http://127.0.0.1:8500/v1/kv/secrets/jitsi/global_env?raw"
        destination = "secrets/global_env.tpl"
        mode = "file"
      }
      template {
        source = "secrets/global_env.tpl"
        destination = "secrets/global_env"
        env = true
      }

      resources {
        cpu = 900
        memory = 1500
        network {
          port "video1_port" { static = "8080" } # this is a hack
        }
      } 

      service {
        tags = [ "jitsi", "(diplonat (tcp_port 8080))" ]
        port = 8080
        address_mode = "driver"
        name = "jitsi-videobridge-video1"
        check {
          type = "tcp"
          port = 8080
          address_mode = "driver"
          interval = "60s"
          timeout = "5s"
          check_restart {
            limit = 3
            grace = "90s"
            ignore_warnings = false
          }
        }
      }

      service {
        tags = [ "jitsi", "(diplonat (udp_port 10000))" ]
        port = 10000
        address_mode = "driver"
        name = "jitsi-videobridge-video2"
      }
    }
  }
}